linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: Don't claim USB ID 07b8:8188
@ 2025-08-11 15:32 Bitterblue Smith
  2025-08-11 15:33 ` [PATCH rtw-next 2/2] wifi: rtl8xxxu: " Bitterblue Smith
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Bitterblue Smith @ 2025-08-11 15:32 UTC (permalink / raw)
  To: linux-wireless@vger.kernel.org; +Cc: Ping-Ke Shih, Helge Deller

This ID appears to be RTL8188SU, not RTL8188CU. This is the wrong driver
for RTL8188SU. The r8712u driver from staging used to handle this ID.

Closes: https://lore.kernel.org/linux-wireless/ee0acfef-a753-4f90-87df-15f8eaa9c3a8@gmx.de/
Cc: stable@vger.kernel.org
Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com>
---
 drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c
index 00a6778df704..9480823af838 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c
@@ -291,7 +291,6 @@ static const struct usb_device_id rtl8192c_usb_ids[] = {
 	{RTL_USB_DEVICE(0x050d, 0x1102, rtl92cu_hal_cfg)}, /*Belkin - Edimax*/
 	{RTL_USB_DEVICE(0x050d, 0x11f2, rtl92cu_hal_cfg)}, /*Belkin - ISY*/
 	{RTL_USB_DEVICE(0x06f8, 0xe033, rtl92cu_hal_cfg)}, /*Hercules - Edimax*/
-	{RTL_USB_DEVICE(0x07b8, 0x8188, rtl92cu_hal_cfg)}, /*Abocom - Abocom*/
 	{RTL_USB_DEVICE(0x07b8, 0x8189, rtl92cu_hal_cfg)}, /*Funai - Abocom*/
 	{RTL_USB_DEVICE(0x0846, 0x9041, rtl92cu_hal_cfg)}, /*NetGear WNA1000M*/
 	{RTL_USB_DEVICE(0x0846, 0x9043, rtl92cu_hal_cfg)}, /*NG WNA1000Mv2*/
-- 
2.50.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH rtw-next 2/2] wifi: rtl8xxxu: Don't claim USB ID 07b8:8188
  2025-08-11 15:32 [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: Don't claim USB ID 07b8:8188 Bitterblue Smith
@ 2025-08-11 15:33 ` Bitterblue Smith
  2025-08-12  0:19   ` Ping-Ke Shih
  2025-08-12  0:19 ` [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: " Ping-Ke Shih
  2025-08-19  1:27 ` Ping-Ke Shih
  2 siblings, 1 reply; 5+ messages in thread
From: Bitterblue Smith @ 2025-08-11 15:33 UTC (permalink / raw)
  To: linux-wireless@vger.kernel.org; +Cc: Ping-Ke Shih, Helge Deller

This ID appears to be RTL8188SU, not RTL8188CU. This is the wrong driver
for RTL8188SU. The r8712u driver from staging used to handle this ID.

Closes: https://lore.kernel.org/linux-wireless/ee0acfef-a753-4f90-87df-15f8eaa9c3a8@gmx.de/
Cc: stable@vger.kernel.org
Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com>
---
 drivers/net/wireless/realtek/rtl8xxxu/core.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/net/wireless/realtek/rtl8xxxu/core.c b/drivers/net/wireless/realtek/rtl8xxxu/core.c
index 8ed1218654d3..44f901aa3b3f 100644
--- a/drivers/net/wireless/realtek/rtl8xxxu/core.c
+++ b/drivers/net/wireless/realtek/rtl8xxxu/core.c
@@ -7998,8 +7998,6 @@ static const struct usb_device_id dev_table[] = {
 	.driver_info = (unsigned long)&rtl8192cu_fops},
 {USB_DEVICE_AND_INTERFACE_INFO(0x06f8, 0xe033, 0xff, 0xff, 0xff),
 	.driver_info = (unsigned long)&rtl8192cu_fops},
-{USB_DEVICE_AND_INTERFACE_INFO(0x07b8, 0x8188, 0xff, 0xff, 0xff),
-	.driver_info = (unsigned long)&rtl8192cu_fops},
 {USB_DEVICE_AND_INTERFACE_INFO(0x07b8, 0x8189, 0xff, 0xff, 0xff),
 	.driver_info = (unsigned long)&rtl8192cu_fops},
 {USB_DEVICE_AND_INTERFACE_INFO(0x0846, 0x9041, 0xff, 0xff, 0xff),
-- 
2.50.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* RE: [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: Don't claim USB ID 07b8:8188
  2025-08-11 15:32 [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: Don't claim USB ID 07b8:8188 Bitterblue Smith
  2025-08-11 15:33 ` [PATCH rtw-next 2/2] wifi: rtl8xxxu: " Bitterblue Smith
@ 2025-08-12  0:19 ` Ping-Ke Shih
  2025-08-19  1:27 ` Ping-Ke Shih
  2 siblings, 0 replies; 5+ messages in thread
From: Ping-Ke Shih @ 2025-08-12  0:19 UTC (permalink / raw)
  To: Bitterblue Smith, linux-wireless@vger.kernel.org; +Cc: Helge Deller

Bitterblue Smith <rtl8821cerfe2@gmail.com> wrote:
> This ID appears to be RTL8188SU, not RTL8188CU. This is the wrong driver
> for RTL8188SU. The r8712u driver from staging used to handle this ID.
> 
> Closes: https://lore.kernel.org/linux-wireless/ee0acfef-a753-4f90-87df-15f8eaa9c3a8@gmx.de/
> Cc: stable@vger.kernel.org
> Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com>

Acked-by: Ping-Ke Shih <pkshih@realtek.com>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH rtw-next 2/2] wifi: rtl8xxxu: Don't claim USB ID 07b8:8188
  2025-08-11 15:33 ` [PATCH rtw-next 2/2] wifi: rtl8xxxu: " Bitterblue Smith
@ 2025-08-12  0:19   ` Ping-Ke Shih
  0 siblings, 0 replies; 5+ messages in thread
From: Ping-Ke Shih @ 2025-08-12  0:19 UTC (permalink / raw)
  To: Bitterblue Smith, linux-wireless@vger.kernel.org; +Cc: Helge Deller

Bitterblue Smith <rtl8821cerfe2@gmail.com> wrote:
> This ID appears to be RTL8188SU, not RTL8188CU. This is the wrong driver
> for RTL8188SU. The r8712u driver from staging used to handle this ID.
> 
> Closes: https://lore.kernel.org/linux-wireless/ee0acfef-a753-4f90-87df-15f8eaa9c3a8@gmx.de/
> Cc: stable@vger.kernel.org
> Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com>

Reviewed-by: Ping-Ke Shih <pkshih@realtek.com>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: Don't claim USB ID 07b8:8188
  2025-08-11 15:32 [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: Don't claim USB ID 07b8:8188 Bitterblue Smith
  2025-08-11 15:33 ` [PATCH rtw-next 2/2] wifi: rtl8xxxu: " Bitterblue Smith
  2025-08-12  0:19 ` [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: " Ping-Ke Shih
@ 2025-08-19  1:27 ` Ping-Ke Shih
  2 siblings, 0 replies; 5+ messages in thread
From: Ping-Ke Shih @ 2025-08-19  1:27 UTC (permalink / raw)
  To: Bitterblue Smith, linux-wireless@vger.kernel.org
  Cc: Ping-Ke Shih, Helge Deller

Bitterblue Smith <rtl8821cerfe2@gmail.com> wrote:

> This ID appears to be RTL8188SU, not RTL8188CU. This is the wrong driver
> for RTL8188SU. The r8712u driver from staging used to handle this ID.
> 
> Closes: https://lore.kernel.org/linux-wireless/ee0acfef-a753-4f90-87df-15f8eaa9c3a8@gmx.de/
> Cc: stable@vger.kernel.org
> Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com>
> Acked-by: Ping-Ke Shih <pkshih@realtek.com>

2 patch(es) applied to rtw-next branch of rtw.git, thanks.

e798f2ac6040 wifi: rtlwifi: rtl8192cu: Don't claim USB ID 07b8:8188
ec0b44736b1d wifi: rtl8xxxu: Don't claim USB ID 07b8:8188

---
https://github.com/pkshih/rtw.git


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-08-19  1:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-11 15:32 [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: Don't claim USB ID 07b8:8188 Bitterblue Smith
2025-08-11 15:33 ` [PATCH rtw-next 2/2] wifi: rtl8xxxu: " Bitterblue Smith
2025-08-12  0:19   ` Ping-Ke Shih
2025-08-12  0:19 ` [PATCH rtw-next 1/2] wifi: rtlwifi: rtl8192cu: " Ping-Ke Shih
2025-08-19  1:27 ` Ping-Ke Shih

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).