diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2014-11-11 16:26:29 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2014-11-11 16:26:29 +0000 |
commit | 606d076523f39174965873c279fcb8ab823e070e (patch) | |
tree | 76a22164b7a8b898b20f650e3f3484eb91356d7b /sys/dev/pci | |
parent | a12efea339192716b651734e013df4c0bde36316 (diff) |
Stop athn(4) from attaching to AR9300 devices for now. There are unresolved
bugs that panic the kernel and it's unclear if any such device works at all.
Anyone in possession of a working AR9300 device that stops working with this
commit please talk to me. I've only seen evidence of this code not working.
ok kirby@ mpi@ phessler@ dcoppa@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_athn_pci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/if_athn_pci.c b/sys/dev/pci/if_athn_pci.c index 69deb9bd5db..a0f641c8b35 100644 --- a/sys/dev/pci/if_athn_pci.c +++ b/sys/dev/pci/if_athn_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_athn_pci.c,v 1.16 2014/07/08 08:55:33 stsp Exp $ */ +/* $OpenBSD: if_athn_pci.c,v 1.17 2014/11/11 16:26:28 stsp Exp $ */ /*- * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr> @@ -97,8 +97,7 @@ static const struct pci_matchid athn_pci_devices[] = { { 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 }, - { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9300 } + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9287 } }; int |