diff options
Diffstat (limited to 'sys/dev/cardbus')
-rw-r--r-- | sys/dev/cardbus/if_rtw_cardbus.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/cardbus/if_rtw_cardbus.c b/sys/dev/cardbus/if_rtw_cardbus.c index face717b170..4598f24d5f2 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.11 2006/10/12 16:35:52 grange Exp $ */ +/* $OpenBSD: if_rtw_cardbus.c,v 1.12 2007/09/05 11:09:08 jsg Exp $ */ /* $NetBSD: if_rtw_cardbus.c,v 1.4 2004/12/20 21:05:34 dyoung Exp $ */ /*- @@ -161,8 +161,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_RT8185 }, { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8180 }, +#ifdef RTW_DEBUG + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8185 }, +#endif { PCI_VENDOR_BELKIN2, PCI_PRODUCT_BELKIN2_F5D6020V3 }, { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DWL610 }, }; |