From e257fff4834002a504ac676257d4fc63c95eee44 Mon Sep 17 00:00:00 2001 From: Weongyo Jeong Date: Fri, 29 May 2009 10:10:23 +0000 Subject: [PATCH] adds new device IDs. PR: usb/135009 Submitted by: Bill Squire --- sys/dev/usb/usbdevs | 5 ++++- sys/dev/usb/wlan/if_uath.c | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 183a77d4b555..363f0e6480d8 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -709,7 +709,10 @@ product ABOCOM WUG2700 0xb21f WUG2700 product ACCTON USB320_EC 0x1046 USB320-EC Ethernet Adapter product ACCTON 2664W 0x3501 2664W product ACCTON 111 0x3503 T-Sinus 111 Wireless Adapter -product ACCTON SMCWUSBG 0x4505 SMCWUSB-G +product ACCTON SMCWUSBG_NF 0x4505 SMCWUSB-G (no firmware) +product ACCTON SMCWUSBG 0x4506 SMCWUSB-G +product ACCTON SMCWUSBTG2_NF 0x4507 SMCWUSBT-G2 (no firmware) +product ACCTON SMCWUSBTG2 0x4508 SMCWUSBT-G2 product ACCTON PRISM_GT 0x4521 PrismGT USB 2.0 WLAN product ACCTON SS1001 0x5046 SpeedStream Ethernet Adapter product ACCTON ZD1211B 0xe501 ZD1211B diff --git a/sys/dev/usb/wlan/if_uath.c b/sys/dev/usb/wlan/if_uath.c index 38f0d9b966b9..0916483206ac 100644 --- a/sys/dev/usb/wlan/if_uath.c +++ b/sys/dev/usb/wlan/if_uath.c @@ -174,6 +174,8 @@ enum { /* recognized device vendors/products */ static const struct usb_device_id uath_devs[] = { #define UATH_DEV(v,p) { USB_VP(USB_VENDOR_##v, USB_PRODUCT_##v##_##p) } + UATH_DEV(ACCTON, SMCWUSBG), + UATH_DEV(ACCTON, SMCWUSBTG2), UATH_DEV(ATHEROS, AR5523), UATH_DEV(ATHEROS2, AR5523_1), UATH_DEV(ATHEROS2, AR5523_2),