diff options
author | Kevin Lo <kevlo@cvs.openbsd.org> | 2018-08-08 09:16:58 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@cvs.openbsd.org> | 2018-08-08 09:16:58 +0000 |
commit | c389546775800421a115c4a09408dc3a937343ea (patch) | |
tree | 06c49c144a87dcc6f02aaafaf5f0e302b7ec661a /sys/dev/pci/if_rtwn.c | |
parent | 4cd0dbc77a76fcb0c5b75bc8655e55f99726f847 (diff) |
Fix Realtek product name from RT8188 to RTL8188CE
ok stsp@
Diffstat (limited to 'sys/dev/pci/if_rtwn.c')
-rw-r--r-- | sys/dev/pci/if_rtwn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_rtwn.c b/sys/dev/pci/if_rtwn.c index 6d5e52b2c3d..20a3906687b 100644 --- a/sys/dev/pci/if_rtwn.c +++ b/sys/dev/pci/if_rtwn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rtwn.c,v 1.30 2017/09/03 16:20:46 stsp Exp $ */ +/* $OpenBSD: if_rtwn.c,v 1.31 2018/08/08 09:16:57 kevlo Exp $ */ /*- * Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr> @@ -201,7 +201,7 @@ extern int rtwn_debug; #define RTWN_PCI_MMBA 0x18 /* memory mapped base */ static const struct pci_matchid rtwn_pci_devices[] = { - { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8188 }, + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RTL8188CE }, { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RTL8192CE } }; |