svn commit: r252196 - in head: share/man/man4 sys/dev/usb sys/dev/usb/wlan

Kevin Lo kevlo at FreeBSD.org
Tue Jun 25 06:43:05 UTC 2013


Author: kevlo
Date: Tue Jun 25 06:43:04 2013
New Revision: 252196
URL: http://svnweb.freebsd.org/changeset/base/252196

Log:
  Add support for D-Link DWA-131.

Modified:
  head/share/man/man4/urtwn.4
  head/sys/dev/usb/usbdevs
  head/sys/dev/usb/wlan/if_urtwn.c

Modified: head/share/man/man4/urtwn.4
==============================================================================
--- head/share/man/man4/urtwn.4	Tue Jun 25 05:05:10 2013	(r252195)
+++ head/share/man/man4/urtwn.4	Tue Jun 25 06:43:04 2013	(r252196)
@@ -74,6 +74,7 @@ The following adapters should work:
 .Pp
 .Bl -tag -width Ds -offset indent -compact
 .It Belkin F7D1102 Surf Wireless Micro
+.It D-Link DWA-131
 .It Edimax EW-7811Un
 .It Netgear WNA1000M
 .It Realtek RTL8192CU

Modified: head/sys/dev/usb/usbdevs
==============================================================================
--- head/sys/dev/usb/usbdevs	Tue Jun 25 05:05:10 2013	(r252195)
+++ head/sys/dev/usb/usbdevs	Tue Jun 25 06:43:04 2013	(r252196)
@@ -1545,6 +1545,7 @@ product DLINK RTL8188CU		0x3308	RTL8188C
 product	DLINK RTL8192CU_1	0x3307	RTL8192CU
 product	DLINK RTL8192CU_2	0x3309	RTL8192CU
 product	DLINK RTL8192CU_3	0x330a	RTL8192CU
+product	DLINK DWA131B		0x330d	DWA-131 rev B
 product DLINK2 DWA120		0x3a0c	DWA-120
 product DLINK2 DWA120_NF	0x3a0d	DWA-120 (no firmware)
 product DLINK2 DWLG122C1	0x3c03	DWL-G122 c1

Modified: head/sys/dev/usb/wlan/if_urtwn.c
==============================================================================
--- head/sys/dev/usb/wlan/if_urtwn.c	Tue Jun 25 05:05:10 2013	(r252195)
+++ head/sys/dev/usb/wlan/if_urtwn.c	Tue Jun 25 06:43:04 2013	(r252196)
@@ -106,6 +106,7 @@ static const STRUCT_USB_HOST_ID urtwn_de
 	URTWN_DEV(DLINK,	RTL8192CU_1),
 	URTWN_DEV(DLINK,	RTL8192CU_2),
 	URTWN_DEV(DLINK,	RTL8192CU_3),
+	URTWN_DEV(DLINK,	DWA131B),
 	URTWN_DEV(EDIMAX,	EW7811UN),
 	URTWN_DEV(EDIMAX,	RTL8192CU),
 	URTWN_DEV(FEIXUN,	RTL8188CU),


More information about the svn-src-head mailing list