From 88f7a9cf86c0f2040d1559763feeea5c73f11cde Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Mon, 6 Aug 2001 23:14:16 +0000 Subject: [PATCH] Add PCI ID for Cisco Aironet 350 Series cards. The patch differs slightly from the submitted one. PR: kern/29415 Submitted by: Bob Fleck --- sys/dev/an/if_an_pci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/dev/an/if_an_pci.c b/sys/dev/an/if_an_pci.c index 47099e82aee..3f80ed5692b 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" },