diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2010-05-16 15:06:23 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2010-05-16 15:06:23 +0000 |
commit | a998ea7bf0773a86f544da789b2d9aa386521790 (patch) | |
tree | ca68effb19c1b9849a0468c88bf1594bdc0c6ccb /sys | |
parent | 4d53b304070139b579584fc2da89330003d72712 (diff) |
add AR9300 PCI Id
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/cardbus/if_athn_cardbus.c | 5 | ||||
-rw-r--r-- | sys/dev/pci/if_athn_pci.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sys/dev/cardbus/if_athn_cardbus.c b/sys/dev/cardbus/if_athn_cardbus.c index 9b5638c7db4..5aced8327dd 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.8 2010/03/27 21:40:13 jsg Exp $ */ +/* $OpenBSD: if_athn_cardbus.c,v 1.9 2010/05/16 15:06:22 damien Exp $ */ /*- * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr> @@ -92,7 +92,8 @@ static const struct pci_matchid athn_cardbus_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_AR9287 }, + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9300 } }; int diff --git a/sys/dev/pci/if_athn_pci.c b/sys/dev/pci/if_athn_pci.c index c3014aef15f..fad7aa668ee 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.5 2010/02/02 17:16:47 damien Exp $ */ +/* $OpenBSD: if_athn_pci.c,v 1.6 2010/05/16 15:06:22 damien Exp $ */ /*- * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr> @@ -89,7 +89,8 @@ 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_AR9287 }, + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9300 } }; int |