diff options
author | kevlo <kevlo@FreeBSD.org> | 2014-10-24 15:36:30 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2014-10-24 15:36:30 +0000 |
commit | be49686e26b089b8b98b9987b5586fdcebcc7df2 (patch) | |
tree | de7272628b953fbbd18a5746b8f92b8165375d36 | |
parent | e80c20a708dcd610fb75ffcb61607a85446b31b3 (diff) | |
download | FreeBSD-src-be49686e26b089b8b98b9987b5586fdcebcc7df2.zip FreeBSD-src-be49686e26b089b8b98b9987b5586fdcebcc7df2.tar.gz |
Add D-Link DWA-123 rev D1 and Elecom WDC-150SU2M.
-rw-r--r-- | share/man/man4/urtwn.4 | 4 | ||||
-rw-r--r-- | sys/dev/usb/usbdevs | 2 | ||||
-rw-r--r-- | sys/dev/usb/wlan/if_urtwn.c | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/share/man/man4/urtwn.4 b/share/man/man4/urtwn.4 index de4ef6d..35463f4 100644 --- a/share/man/man4/urtwn.4 +++ b/share/man/man4/urtwn.4 @@ -14,7 +14,7 @@ .\" .\" $FreeBSD$ .\" -.Dd May 3, 2014 +.Dd October 24, 2014 .Dt URTWN 4 .Os .Sh NAME @@ -89,9 +89,11 @@ IEEE 802.11b/g/n wireless network adapters, including: .It Alfa AWUS036NHR v2 .It ASUS USB-N10 NANO .It Belkin F7D1102 Surf Wireless Micro +.It D-Link DWA-123 rev D1 .It D-Link DWA-125 rev D1 .It D-Link DWA-131 .It Edimax EW-7811Un +.It Elecom WDC-150SU2M .It Netgear WNA1000M .It Realtek RTL8192CU .It Realtek RTL8188CUS diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 8e117d7..3150ecf 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1596,6 +1596,7 @@ product DLINK DUBE100C1 0x1a02 DUB-E100 rev C1 product DLINK DSB650TX4 0x200c 10/100 Ethernet product DLINK DWL120E 0x3200 DWL-120 rev E product DLINK DWA125D1 0x330f DWA-125 rev D1 +product DLINK DWA123D1 0x3310 DWA-123 rev D1 product DLINK DWL122 0x3700 DWL-122 product DLINK DWLG120 0x3701 DWL-G120 product DLINK DWL120F 0x3702 DWL-120 rev F @@ -1708,6 +1709,7 @@ product ELECOM MOUSE29UO 0x0002 mouse 29UO product ELECOM LDUSBTX0 0x200c LD-USB/TX product ELECOM LDUSBTX1 0x4002 LD-USB/TX product ELECOM LDUSBLTX 0x4005 LD-USBL/TX +product ELECOM WDC150SU2M 0x4008 WDC-150SU2M product ELECOM LDUSBTX2 0x400b LD-USB/TX product ELECOM LDUSB20 0x4010 LD-USB20 product ELECOM UCSGT 0x5003 UC-SGT diff --git a/sys/dev/usb/wlan/if_urtwn.c b/sys/dev/usb/wlan/if_urtwn.c index 1f728d4..e21fbea 100644 --- a/sys/dev/usb/wlan/if_urtwn.c +++ b/sys/dev/usb/wlan/if_urtwn.c @@ -153,7 +153,9 @@ static const STRUCT_USB_HOST_ID urtwn_devs[] = { URTWN_DEV(TRENDNET, RTL8192CU), URTWN_DEV(ZYXEL, RTL8192CU), /* URTWN_RTL8188E */ + URTWN_RTL8188E_DEV(DLINK, DWA123D1), URTWN_RTL8188E_DEV(DLINK, DWA125D1), + URTWN_RTL8188E_DEV(ELECOM, WDC150SU2M), URTWN_RTL8188E_DEV(REALTEK, RTL8188ETV), URTWN_RTL8188E_DEV(REALTEK, RTL8188EU), #undef URTWN_RTL8188E_DEV |