NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

kern/52212: Missing usbdevs entry for wifi stick TP-Link TL-WN722N v2



>Number:         52212
>Category:       kern
>Synopsis:       Missing usbdevs entry for wifi stick TP-Link TL-WN722N v2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    kern-bug-people
>State:          open
>Class:          change-request
>Submitter-Id:   net
>Arrival-Date:   Wed May 03 10:30:00 +0000 2017
>Originator:     Kai-Uwe Eckhardt
>Release:        7.99.71
>Organization:
>Environment:
>Description:
The usb wifi stick TP-Link TL-WN722N v2, FCC ID TE7WN722NV2 is not recognized.  
>How-To-Repeat:

>Fix:
With the following patch I was able to use it with WPA-EAP for two days without problems. 


dmesg:

May  3 13:34:44 nb64 /netbsd: urtwn0 at uhub2 port 6
May  3 13:34:44 nb64 /netbsd: urtwn0: Realtek (0x2357) 802.11n NIC (0x10c), rev 2.00/0.00, addr 3
May  3 13:34:44 nb64 /netbsd: urtwn0: MAC/BB RTL8188EU, RF 6052 1T1R, address 18:d6:c7:1a:16:2c
May  3 13:34:44 nb64 /netbsd: urtwn0: 1 rx pipe, 2 tx pipes
May  3 13:34:44 nb64 /netbsd: urtwn0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
May  3 13:34:44 nb64 /netbsd: urtwn0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps



--- /usr/src/sys/dev/usb/usbdevs.orig	2017-05-03 11:42:33.488663005 +0200
+++ /usr/src/sys/dev/usb/usbdevs	2017-05-03 13:32:49.578572477 +0200
@@ -3260,6 +3260,7 @@
 
 /* TP-Link products */
 product TPLINK RTL8192CU	0x0100	RTL8192CU
+product TPLINK RTL8188EU	0x010c	RTL8188EU
 
 /* Trek Technology products */
 product TREK THUMBDRIVE		0x1111	ThumbDrive
--- /usr/src/sys/dev/usb/if_urtwn.c.orig	2017-05-03 11:47:15.857658044 +0200
+++ /usr/src/sys/dev/usb/if_urtwn.c	2017-05-03 13:33:57.424820181 +0200
@@ -191,6 +191,7 @@
 	URTWN_RTL8188E_DEV(REALTEK, RTL8188ETV),
 	URTWN_RTL8188E_DEV(REALTEK, RTL8188EU),
 	URTWN_RTL8188E_DEV(ABOCOM, RTL8188EU),
+	URTWN_RTL8188E_DEV(TPLINK, RTL8188EU),
 
 	/* URTWN_RTL8192EU */
 	URTWN_RTL8192EU_DEV(REALTEK,	RTL8192EU),



Home | Main Index | Thread Index | Old Index