diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-05-29 02:58:32 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-05-29 02:58:32 +0000 |
commit | 171f684dab1e3ccc2da4ee86219e9396e8e38e55 (patch) | |
tree | 71340aa062e4b3ccc5e1c12c2069b33ac71dadfd /sys | |
parent | 99b8c596bad927aea561fe0ed02ffda9d1149a14 (diff) |
add the RTL8185 (not working yet)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/cardbus/if_rtw_cardbus.c | 9 | ||||
-rw-r--r-- | sys/dev/pci/if_rtw_pci.c | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/sys/dev/cardbus/if_rtw_cardbus.c b/sys/dev/cardbus/if_rtw_cardbus.c index 26b6ea9c168..ee7dc965536 100644 --- a/sys/dev/cardbus/if_rtw_cardbus.c +++ b/sys/dev/cardbus/if_rtw_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rtw_cardbus.c,v 1.6 2005/05/27 18:57:19 robert Exp $ */ +/* $OpenBSD: if_rtw_cardbus.c,v 1.7 2005/05/29 02:58:30 reyk Exp $ */ /* $NetBSD: if_rtw_cardbus.c,v 1.4 2004/12/20 21:05:34 dyoung Exp $ */ /*- @@ -167,9 +167,10 @@ void rtw_cardbus_disable(struct rtw_softc *); void rtw_cardbus_power(struct rtw_softc *, int); const struct cardbus_matchid rtw_cardbus_devices[] = { - { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8180 }, - { PCI_VENDOR_BELKIN2, PCI_PRODUCT_BELKIN2_F5D6020V3 }, - { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DWL610 }, + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8185 }, + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8180 }, + { PCI_VENDOR_BELKIN2, PCI_PRODUCT_BELKIN2_F5D6020V3 }, + { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DWL610 }, }; int diff --git a/sys/dev/pci/if_rtw_pci.c b/sys/dev/pci/if_rtw_pci.c index 65634c80f8f..567f65507c2 100644 --- a/sys/dev/pci/if_rtw_pci.c +++ b/sys/dev/pci/if_rtw_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rtw_pci.c,v 1.4 2005/04/15 03:42:57 jsg Exp $ */ +/* $OpenBSD: if_rtw_pci.c,v 1.5 2005/05/29 02:58:31 reyk Exp $ */ /* $NetBSD: if_rtw_pci.c,v 1.1 2004/09/26 02:33:36 dyoung Exp $ */ /*- @@ -109,9 +109,10 @@ struct cfattach rtw_pci_ca = { }; const struct pci_matchid rtw_pci_products[] = { - { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8180 }, - { PCI_VENDOR_BELKIN2, PCI_PRODUCT_BELKIN2_F5D6001 }, - { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DWL610 }, + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8185 }, + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8180 }, + { PCI_VENDOR_BELKIN2, PCI_PRODUCT_BELKIN2_F5D6001 }, + { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DWL610 }, }; int |