diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-10-13 01:54:23 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-10-13 01:54:23 +0000 |
commit | 02a452efe8980f5304d6c8a06ae8ed4ac946eed7 (patch) | |
tree | 0342ce15a8118e14561d8a3b4cb6ae9056983e43 | |
parent | e5dfb989d70e1c90eedc1bb41d22fe757209ef6f (diff) |
add the AR5416 and AR5418 device IDs (needs some more testing)
-rw-r--r-- | sys/dev/ic/ar5xxx.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/ic/ar5xxx.c b/sys/dev/ic/ar5xxx.c index dc5494669f5..19bcda528b8 100644 --- a/sys/dev/ic/ar5xxx.c +++ b/sys/dev/ic/ar5xxx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ar5xxx.c,v 1.45 2007/10/12 15:34:11 reyk Exp $ */ +/* $OpenBSD: ar5xxx.c,v 1.46 2007/10/13 01:54:22 reyk Exp $ */ /* * Copyright (c) 2004, 2005, 2006, 2007 Reyk Floeter <reyk@openbsd.org> @@ -66,6 +66,10 @@ 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, |