linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Add support for TP TX30U Plus
@ 2025-12-11 21:16 Jan Gerber
  2025-12-12  0:37 ` Ping-Ke Shih
  0 siblings, 1 reply; 5+ messages in thread
From: Jan Gerber @ 2025-12-11 21:16 UTC (permalink / raw)
  To: linux-wireless; +Cc: Jan Gerber

the device shows up like this and everything seams to work:

Bus 004 Device 003: ID 3625:010d Realtek 802.11ax WLAN Adapter
---
 drivers/net/wireless/realtek/rtw89/rtw8852au.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852au.c b/drivers/net/wireless/realtek/rtw89/rtw8852au.c
index ca782469c..83a8321e8 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8852au.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852au.c
@@ -62,6 +62,8 @@ static const struct usb_device_id rtw_8852au_id_table[] = {
 	  .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
 	{ USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010f, 0xff, 0xff, 0xff),
 	  .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
+	{ USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010d, 0xff, 0xff, 0xff),
+	  .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
 	{},
 };
 MODULE_DEVICE_TABLE(usb, rtw_8852au_id_table);
-- 
2.51.0


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

* RE: [PATCH] Add support for TP TX30U Plus
  2025-12-11 21:16 [PATCH] Add support for TP TX30U Plus Jan Gerber
@ 2025-12-12  0:37 ` Ping-Ke Shih
  2025-12-12  0:54   ` [PATCH] wifi: rtw89: 8852au: add " Jan Gerber
  0 siblings, 1 reply; 5+ messages in thread
From: Ping-Ke Shih @ 2025-12-12  0:37 UTC (permalink / raw)
  To: Jan Gerber, linux-wireless@vger.kernel.org

Jan Gerber <j@mailb.org> wrote:
> the device shows up like this and everything seams to work:
> 
> Bus 004 Device 003: ID 3625:010d Realtek 802.11ax WLAN Adapter

Subject should be "wifi: rtw89: 8852au: add support for TP TX30U Plus"

Missed your s-o-b.

> ---
>  drivers/net/wireless/realtek/rtw89/rtw8852au.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852au.c
> b/drivers/net/wireless/realtek/rtw89/rtw8852au.c
> index ca782469c..83a8321e8 100644
> --- a/drivers/net/wireless/realtek/rtw89/rtw8852au.c
> +++ b/drivers/net/wireless/realtek/rtw89/rtw8852au.c
> @@ -62,6 +62,8 @@ static const struct usb_device_id rtw_8852au_id_table[] = {
>           .driver_info = (kernel_ulong_t)&rtw89_8852au_info },

To keep increasing order of device ID, move new entry here.

>         { USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010f, 0xff, 0xff, 0xff),
>           .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
> +       { USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010d, 0xff, 0xff, 0xff),
> +         .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
>         {},
>  };
>  MODULE_DEVICE_TABLE(usb, rtw_8852au_id_table);
> --
> 2.51.0
> 


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

* [PATCH] wifi: rtw89: 8852au: add support for TP TX30U Plus
  2025-12-12  0:37 ` Ping-Ke Shih
@ 2025-12-12  0:54   ` Jan Gerber
  2025-12-12  1:09     ` Ping-Ke Shih
  2025-12-23  3:49     ` Ping-Ke Shih
  0 siblings, 2 replies; 5+ messages in thread
From: Jan Gerber @ 2025-12-12  0:54 UTC (permalink / raw)
  To: linux-wireless; +Cc: Jan Gerber

the device shows up like this and everything seams to work:

Bus 004 Device 003: ID 3625:010d Realtek 802.11ax WLAN Adapter

Signed-off-by: Jan Gerber <j@mailb.org>
---
 drivers/net/wireless/realtek/rtw89/rtw8852au.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852au.c b/drivers/net/wireless/realtek/rtw89/rtw8852au.c
index ca782469c..74a976c98 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8852au.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852au.c
@@ -60,6 +60,8 @@ static const struct usb_device_id rtw_8852au_id_table[] = {
 	  .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
 	{ USB_DEVICE_AND_INTERFACE_INFO(0x2357, 0x0141, 0xff, 0xff, 0xff),
 	  .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
+	{ USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010d, 0xff, 0xff, 0xff),
+	  .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
 	{ USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010f, 0xff, 0xff, 0xff),
 	  .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
 	{},
-- 
2.51.0


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

* RE: [PATCH] wifi: rtw89: 8852au: add support for TP TX30U Plus
  2025-12-12  0:54   ` [PATCH] wifi: rtw89: 8852au: add " Jan Gerber
@ 2025-12-12  1:09     ` Ping-Ke Shih
  2025-12-23  3:49     ` Ping-Ke Shih
  1 sibling, 0 replies; 5+ messages in thread
From: Ping-Ke Shih @ 2025-12-12  1:09 UTC (permalink / raw)
  To: Jan Gerber, linux-wireless@vger.kernel.org

Jan Gerber <j@mailb.org> wrote:
> the device shows up like this and everything seams to work:
> 
> Bus 004 Device 003: ID 3625:010d Realtek 802.11ax WLAN Adapter
> 
> Signed-off-by: Jan Gerber <j@mailb.org>

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



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

* Re: [PATCH] wifi: rtw89: 8852au: add support for TP TX30U Plus
  2025-12-12  0:54   ` [PATCH] wifi: rtw89: 8852au: add " Jan Gerber
  2025-12-12  1:09     ` Ping-Ke Shih
@ 2025-12-23  3:49     ` Ping-Ke Shih
  1 sibling, 0 replies; 5+ messages in thread
From: Ping-Ke Shih @ 2025-12-23  3:49 UTC (permalink / raw)
  To: Jan Gerber, linux-wireless; +Cc: Jan Gerber

Jan Gerber <j@mailb.org> wrote:

> the device shows up like this and everything seams to work:
> 
> Bus 004 Device 003: ID 3625:010d Realtek 802.11ax WLAN Adapter
> 
> Signed-off-by: Jan Gerber <j@mailb.org>
> Acked-by: Ping-Ke Shih <pkshih@realtek.com>

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

a2f1fc9ab6fb wifi: rtw89: 8852au: add support for TP TX30U Plus

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


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

end of thread, other threads:[~2025-12-23  3:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-11 21:16 [PATCH] Add support for TP TX30U Plus Jan Gerber
2025-12-12  0:37 ` Ping-Ke Shih
2025-12-12  0:54   ` [PATCH] wifi: rtw89: 8852au: add " Jan Gerber
2025-12-12  1:09     ` Ping-Ke Shih
2025-12-23  3:49     ` 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).