aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/an
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2001-08-06 23:14:16 +0000
committerBrooks Davis <brooks@FreeBSD.org>2001-08-06 23:14:16 +0000
commit88f7a9cf86c0f2040d1559763feeea5c73f11cde (patch)
treef299c8332a1fb7f9ae21d6bad2d8f4eb988238c2 /sys/dev/an
parenta4616748ab35cbec2b9601dec15cab58a809e7d5 (diff)
downloadsrc-88f7a9cf86c0f2040d1559763feeea5c73f11cde.tar.gz
src-88f7a9cf86c0f2040d1559763feeea5c73f11cde.zip
Add PCI ID for Cisco Aironet 350 Series cards. The patch differs
slightly from the submitted one. PR: kern/29415 Submitted by: Bob Fleck <rfleck@cigital.com>
Notes
Notes: svn path=/head/; revision=81221
Diffstat (limited to 'sys/dev/an')
-rw-r--r--sys/dev/an/if_an_pci.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/an/if_an_pci.c b/sys/dev/an/if_an_pci.c
index 47099e82aeeb..3f80ed5692b0 100644
--- a/sys/dev/an/if_an_pci.c
+++ b/sys/dev/an/if_an_pci.c
@@ -96,6 +96,7 @@ struct an_type {
};
#define AIRONET_VENDORID 0x14B9
+#define AIRONET_DEVICEID_35x 0x0350
#define AIRONET_DEVICEID_4500 0x4500
#define AIRONET_DEVICEID_4800 0x4800
#define AIRONET_DEVICEID_4xxx 0x0001
@@ -103,6 +104,7 @@ struct an_type {
#define AN_PCI_LOIO 0x18 /* Aironet iobase */
static struct an_type an_devs[] = {
+ { AIRONET_VENDORID, AIRONET_DEVICEID_35x, "Cisco Aironet 350 Series" },
{ AIRONET_VENDORID, AIRONET_DEVICEID_4500, "Aironet PCI4500" },
{ AIRONET_VENDORID, AIRONET_DEVICEID_4800, "Aironet PCI4800" },
{ AIRONET_VENDORID, AIRONET_DEVICEID_4xxx, "Aironet PCI4500/PCI4800" },