svn commit: r360848 - in head: share/man/man4 sys/dev/rtwn/usb sys/dev/usb

Mark Johnston markj at FreeBSD.org
Sat May 9 14:49:57 UTC 2020


Author: markj
Date: Sat May  9 14:49:56 2020
New Revision: 360848
URL: https://svnweb.freebsd.org/changeset/base/360848

Log:
  rtwn: Add a new USB ID.
  
  PR:		246315
  Submitted by:	Idwer Vollering <vidwer+fbsdbugs at gmail.com>
  MFC after:	1 week

Modified:
  head/share/man/man4/rtwn_usb.4
  head/sys/dev/rtwn/usb/rtwn_usb_attach.h
  head/sys/dev/usb/usbdevs

Modified: head/share/man/man4/rtwn_usb.4
==============================================================================
--- head/share/man/man4/rtwn_usb.4	Sat May  9 14:19:29 2020	(r360847)
+++ head/share/man/man4/rtwn_usb.4	Sat May  9 14:49:56 2020	(r360848)
@@ -29,7 +29,7 @@
 .\"
 .\" $FreeBSD$
 .\"/
-.Dd September 1, 2019
+.Dd May 9, 2020
 .Dt RTWN_USB 4
 .Os
 .Sh NAME
@@ -83,6 +83,7 @@ based USB wireless network adapters, including:
 .It "EDUP EP-AC1620" Ta RTL8821AU Ta USB 2.0
 .It "Elecom WDC-150SU2M" Ta RTL8188EU Ta USB 2.0
 .It "EnGenius EUB1200AC" Ta RTL8812AU Ta USB 3.0
+.It "Foxconn WFUR6" Ta RTL8812AU Ta USB 2.0
 .It "Hawking HD65U" Ta RTL8821AU Ta USB 2.0
 .It "Hercules Wireless N USB Pico" Ta RTL8188CUS Ta USB 2.0
 .It "I-O Data WN-AC867U" Ta RTL8812AU Ta USB 3.0

Modified: head/sys/dev/rtwn/usb/rtwn_usb_attach.h
==============================================================================
--- head/sys/dev/rtwn/usb/rtwn_usb_attach.h	Sat May  9 14:19:29 2020	(r360847)
+++ head/sys/dev/rtwn/usb/rtwn_usb_attach.h	Sat May  9 14:49:56 2020	(r360848)
@@ -136,7 +136,8 @@ static const STRUCT_USB_HOST_ID rtwn_devs[] = {
 	RTWN_RTL8812AU_DEV(MELCO,		WIU3866D),
 	RTWN_RTL8812AU_DEV(NEC,			WL900U),
 	RTWN_RTL8812AU_DEV(PLANEX2,		GW900D),
-	RTWN_RTL8812AU_DEV(REALTEK,		RTL8812AU),
+	RTWN_RTL8812AU_DEV(REALTEK,		RTL8812AU_1),
+	RTWN_RTL8812AU_DEV(REALTEK,		RTL8812AU_2),
 	RTWN_RTL8812AU_DEV(SENAO,		EUB1200AC),
 	RTWN_RTL8812AU_DEV(SITECOMEU,		WLA7100),
 	RTWN_RTL8812AU_DEV(TPLINK,		T4U),

Modified: head/sys/dev/usb/usbdevs
==============================================================================
--- head/sys/dev/usb/usbdevs	Sat May  9 14:19:29 2020	(r360847)
+++ head/sys/dev/usb/usbdevs	Sat May  9 14:49:56 2020	(r360848)
@@ -3996,7 +3996,8 @@ product REALTEK RTL8188CU_COMBO	0x8754	RTL8188CU
 product REALTEK RTL8821AU_1	0xa811	RTL8821AU
 product REALTEK RTL8723BU	0xb720	RTL8723BU
 product REALTEK RTL8192SU	0xc512	RTL8192SU
-product REALTEK RTL8812AU	0x8812  RTL8812AU Wireless Adapter
+product REALTEK RTL8812AU_1	0x8812  RTL8812AU Wireless Adapter
+product REALTEK RTL8812AU_2	0x881a  RTL8812AU Wireless Adapter
 
 /* RedOctane products */
 product REDOCTANE DUMMY		0x0000	Dummy product


More information about the svn-src-head mailing list