diff options
author | 2009-09-23 18:03:30 +0000 | |
---|---|---|
committer | 2009-09-23 18:03:30 +0000 | |
commit | 9cdc817120dce7f821b2712bb46fe2fe24c48457 (patch) | |
tree | 74dd9070d539afac56c330833eed8d060c21e2c3 /sys/dev | |
parent | Restructure watchdog support such that it will work on both LOMlite and (diff) | |
download | wireguard-openbsd-9cdc817120dce7f821b2712bb46fe2fe24c48457.tar.xz wireguard-openbsd-9cdc817120dce7f821b2712bb46fe2fe24c48457.zip |
do not attach the AR5416 and AR5418 (AR5416 PCIe) to the ath(4)
driver as these chipsets are not currently supported.
noticed by ian@
"makes sense" millert@
ok jsg@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/ar5xxx.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/ic/ar5xxx.c b/sys/dev/ic/ar5xxx.c index 126cc029588..e8ad8d82ff8 100644 --- a/sys/dev/ic/ar5xxx.c +++ b/sys/dev/ic/ar5xxx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ar5xxx.c,v 1.54 2009/06/02 12:39:02 reyk Exp $ */ +/* $OpenBSD: ar5xxx.c,v 1.55 2009/09/23 18:03:30 damien Exp $ */ /* * Copyright (c) 2004, 2005, 2006, 2007 Reyk Floeter <reyk@openbsd.org> @@ -66,10 +66,6 @@ static const struct { ar5k_ar5212_attach }, { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR5424, ar5k_ar5212_attach }, - { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR5416, - ar5k_ar5212_attach }, - { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR5418, - ar5k_ar5212_attach }, { PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3CRDAG675, ar5k_ar5212_attach }, { PCI_VENDOR_3COM2, PCI_PRODUCT_3COM2_3CRPAG175, |