diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2010-02-02 17:16:48 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2010-02-02 17:16:48 +0000 |
commit | 2b2b302c1eaaad52c89653daed313be98a933b3e (patch) | |
tree | 264066764d5c1cf5e95e19ae57624b6d11a5d9c7 /sys/dev/cardbus | |
parent | 227e35a8781d5e261932ce7b42e886e1e88f3f2a (diff) |
Attach athn(4) to the AR2427 which is a castrated (no 11n) AR928X.
The Asus Eee PC 1005P has such a device.
This makes things even more confusing since athn now also supports
some non-802.11n devices!
Please let me know if you have such a device.
Diffstat (limited to 'sys/dev/cardbus')
-rw-r--r-- | sys/dev/cardbus/if_athn_cardbus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/cardbus/if_athn_cardbus.c b/sys/dev/cardbus/if_athn_cardbus.c index 0ef4343e30c..a7612585924 100644 --- a/sys/dev/cardbus/if_athn_cardbus.c +++ b/sys/dev/cardbus/if_athn_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_athn_cardbus.c,v 1.4 2009/12/22 16:11:26 sthen Exp $ */ +/* $OpenBSD: if_athn_cardbus.c,v 1.5 2010/02/02 17:16:47 damien Exp $ */ /*- * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr> @@ -89,6 +89,7 @@ static const struct cardbus_matchid athn_cardbus_devices[] = { { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9280 }, { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9281 }, { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9285 }, + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR2427 }, { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9227 }, { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9287 } }; |