* [PATCH rtw-next v2 2/5] wifi: rtw89: 8832au: Support two additional devices
2026-05-31 23:29 [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B Zenm Chen
@ 2026-05-31 23:29 ` Zenm Chen
2026-05-31 23:29 ` [PATCH rtw-next v2 3/5] wifi: rtw89: 8832bu: Add support for I-O DATA WN-DAX1200U Zenm Chen
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Zenm Chen @ 2026-05-31 23:29 UTC (permalink / raw)
To: linux-wireless, pkshih, rtl8821cerfe2; +Cc: zenmchen
Add two new ids into the device table to support the following 8832au-based
adapters:
- Mercusys MA72XH (2c4e:0124)
- TP-Link Archer TX23U (37ad:0102)
Compile tested only.
Link: https://github.com/morrownr/rtw89/commit/82b789a0f1f41e3148ecf302b4dd8f11d2d68713
Link: https://github.com/morrownr/rtw89/commit/f2e2a70eef253b4d3fc8906c99311dbc4d9f6aab
Signed-off-by: Zenm Chen <zenmchen@gmail.com>
---
v2:
- No change.
---
drivers/net/wireless/realtek/rtw89/rtw8852au.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852au.c b/drivers/net/wireless/realtek/rtw89/rtw8852au.c
index 4cced4619..b3f2690cd 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8852au.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852au.c
@@ -63,10 +63,14 @@ 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(0x2c4e, 0x0124, 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 },
+ { USB_DEVICE_AND_INTERFACE_INFO(0x37ad, 0x0102, 0xff, 0xff, 0xff),
+ .driver_info = (kernel_ulong_t)&rtw89_8852au_info },
{},
};
MODULE_DEVICE_TABLE(usb, rtw_8852au_id_table);
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH rtw-next v2 3/5] wifi: rtw89: 8832bu: Add support for I-O DATA WN-DAX1200U
2026-05-31 23:29 [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B Zenm Chen
2026-05-31 23:29 ` [PATCH rtw-next v2 2/5] wifi: rtw89: 8832au: Support two additional devices Zenm Chen
@ 2026-05-31 23:29 ` Zenm Chen
2026-05-31 23:29 ` [PATCH rtw-next v2 4/5] wifi: rtw89: 8832cu: Add support for Mercusys MA86XH Zenm Chen
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Zenm Chen @ 2026-05-31 23:29 UTC (permalink / raw)
To: linux-wireless, pkshih, rtl8821cerfe2; +Cc: zenmchen
Add the id 04bb:095b into the device table to support I-O DATA WN-DAX1200U,
an 8832bu-based adapter.
Compile tested only.
Link: https://github.com/morrownr/rtw89/commit/b22949056cfccf85a96540b2c0bd4d32e76cab0f
Signed-off-by: Zenm Chen <zenmchen@gmail.com>
---
v2:
- Add missing "Link: "
---
drivers/net/wireless/realtek/rtw89/rtw8852bu.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852bu.c b/drivers/net/wireless/realtek/rtw89/rtw8852bu.c
index 37111fed2..35fdde1cf 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8852bu.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852bu.c
@@ -37,6 +37,8 @@ static const struct rtw89_driver_info rtw89_8852bu_info = {
};
static const struct usb_device_id rtw_8852bu_id_table[] = {
+ { USB_DEVICE_AND_INTERFACE_INFO(0x04bb, 0x095b, 0xff, 0xff, 0xff),
+ .driver_info = (kernel_ulong_t)&rtw89_8852bu_info },
{ USB_DEVICE_AND_INTERFACE_INFO(0x0bda, 0xb832, 0xff, 0xff, 0xff),
.driver_info = (kernel_ulong_t)&rtw89_8852bu_info },
{ USB_DEVICE_AND_INTERFACE_INFO(0x0bda, 0xb83a, 0xff, 0xff, 0xff),
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH rtw-next v2 4/5] wifi: rtw89: 8832cu: Add support for Mercusys MA86XH
2026-05-31 23:29 [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B Zenm Chen
2026-05-31 23:29 ` [PATCH rtw-next v2 2/5] wifi: rtw89: 8832au: Support two additional devices Zenm Chen
2026-05-31 23:29 ` [PATCH rtw-next v2 3/5] wifi: rtw89: 8832bu: Add support for I-O DATA WN-DAX1200U Zenm Chen
@ 2026-05-31 23:29 ` Zenm Chen
2026-05-31 23:29 ` [PATCH rtw-next v2 5/5] wifi: rtw89: 8912au: Add support for Mercusys MA37BEH Zenm Chen
2026-06-01 6:10 ` [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B Ping-Ke Shih
4 siblings, 0 replies; 7+ messages in thread
From: Zenm Chen @ 2026-05-31 23:29 UTC (permalink / raw)
To: linux-wireless, pkshih, rtl8821cerfe2; +Cc: zenmchen
Add the id 2c4e:0127 into the device table to support Mercusys MA86XH,
a new 8832cu-based adapter.
This also deletes the id 35b2:0502 which doesn't actually exist and was
wrongly added into the driver.
Compile tested only.
Link: https://github.com/morrownr/rtw89/commit/40149484a9db41a4146d2fb4980c92017c5f552c
Link: https://github.com/morrownr/rtw89/commit/c82b4b42a93c2d189a11306701552d4732dc9fb0
Signed-off-by: Zenm Chen <zenmchen@gmail.com>
---
v2:
- Fix a typo in the commit message (actaully -> actually)
- Add missing "Link: "
---
drivers/net/wireless/realtek/rtw89/rtw8852cu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852cu.c b/drivers/net/wireless/realtek/rtw89/rtw8852cu.c
index 790fd1dec..2162dabbb 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8852cu.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852cu.c
@@ -53,9 +53,9 @@ static const struct usb_device_id rtw_8852cu_id_table[] = {
.driver_info = (kernel_ulong_t)&rtw89_8852cu_info },
{ USB_DEVICE_AND_INTERFACE_INFO(0x28de, 0x2432, 0xff, 0xff, 0xff),
.driver_info = (kernel_ulong_t)&rtw89_8852cu_info },
- { USB_DEVICE_AND_INTERFACE_INFO(0x2c7c, 0x8206, 0xff, 0xff, 0xff),
+ { USB_DEVICE_AND_INTERFACE_INFO(0x2c4e, 0x0127, 0xff, 0xff, 0xff),
.driver_info = (kernel_ulong_t)&rtw89_8852cu_info },
- { USB_DEVICE_AND_INTERFACE_INFO(0x35b2, 0x0502, 0xff, 0xff, 0xff),
+ { USB_DEVICE_AND_INTERFACE_INFO(0x2c7c, 0x8206, 0xff, 0xff, 0xff),
.driver_info = (kernel_ulong_t)&rtw89_8852cu_info },
{ USB_DEVICE_AND_INTERFACE_INFO(0x35bc, 0x0101, 0xff, 0xff, 0xff),
.driver_info = (kernel_ulong_t)&rtw89_8852cu_info },
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH rtw-next v2 5/5] wifi: rtw89: 8912au: Add support for Mercusys MA37BEH
2026-05-31 23:29 [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B Zenm Chen
` (2 preceding siblings ...)
2026-05-31 23:29 ` [PATCH rtw-next v2 4/5] wifi: rtw89: 8832cu: Add support for Mercusys MA86XH Zenm Chen
@ 2026-05-31 23:29 ` Zenm Chen
2026-06-01 6:10 ` [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B Ping-Ke Shih
4 siblings, 0 replies; 7+ messages in thread
From: Zenm Chen @ 2026-05-31 23:29 UTC (permalink / raw)
To: linux-wireless, pkshih, rtl8821cerfe2; +Cc: zenmchen
Add the id 2c4e:0125 into the device table to support Mercusys MA37BEH,
a new 8912au-based adapter.
Compile tested only.
Link: https://github.com/morrownr/rtw89/commit/73cd715afee2dda3f670cdae5e40fbeba7d9be36
Signed-off-by: Zenm Chen <zenmchen@gmail.com>
---
v2:
- Add missing "Link: "
---
drivers/net/wireless/realtek/rtw89/rtw8922au.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8922au.c b/drivers/net/wireless/realtek/rtw89/rtw8922au.c
index 347bde171..8d22bb387 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8922au.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8922au.c
@@ -56,6 +56,8 @@ static const struct usb_device_id rtw_8922au_id_table[] = {
.driver_info = (kernel_ulong_t)&rtw89_8922au_info },
{ USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x332b, 0xff, 0xff, 0xff),
.driver_info = (kernel_ulong_t)&rtw89_8922au_info },
+ { USB_DEVICE_AND_INTERFACE_INFO(0x2c4e, 0x0125, 0xff, 0xff, 0xff),
+ .driver_info = (kernel_ulong_t)&rtw89_8922au_info },
{ USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010a, 0xff, 0xff, 0xff),
.driver_info = (kernel_ulong_t)&rtw89_8922au_info },
{ USB_DEVICE_AND_INTERFACE_INFO(0x37ad, 0x0100, 0xff, 0xff, 0xff),
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* RE: [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B
2026-05-31 23:29 [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B Zenm Chen
` (3 preceding siblings ...)
2026-05-31 23:29 ` [PATCH rtw-next v2 5/5] wifi: rtw89: 8912au: Add support for Mercusys MA37BEH Zenm Chen
@ 2026-06-01 6:10 ` Ping-Ke Shih
2026-06-03 17:05 ` Zenm Chen
4 siblings, 1 reply; 7+ messages in thread
From: Ping-Ke Shih @ 2026-06-01 6:10 UTC (permalink / raw)
To: Zenm Chen, linux-wireless@vger.kernel.org,
rtl8821cerfe2@gmail.com
Zenm Chen <zenmchen@gmail.com> wrote:
> Add the ids 056e:4027 and 056e:4028 into the device table to support
> ELECOM WD{B,C}-X600DU2M-B, two new 8831bu-based adapters.
>
> Compile tested only.
>
> Link: https://github.com/morrownr/rtw89/commit/9e2db2834b37c6adfc4b872a9ef56c927df22bea
As I saw surface of this Link ".../commit/...", I'd ask you to remove
the Link, because a github commit isn't so important to be a commit message.
Look deeper.... The Link's content (the comment part) is to indicate where
you got these USB devices ID, right?
If so, maybe you can just mention that you collected these ID from [1].
(change to this style instead of formal Link)
[1] https://github.com/morrownr/rtw89/commit/9e2db2834b37c6adfc4b872a9ef56c927df22bea
Then, if a reviewer wants to save himself time, he can just ignore the link.
Please apply it to this patchset. Thanks.
Ping-Ke
^ permalink raw reply [flat|nested] 7+ messages in thread* RE: [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B
2026-06-01 6:10 ` [PATCH rtw-next v2 1/5] wifi: rtw89: 8831bu: Add support for ELECOM WD{B,C}-X600DU2M-B Ping-Ke Shih
@ 2026-06-03 17:05 ` Zenm Chen
0 siblings, 0 replies; 7+ messages in thread
From: Zenm Chen @ 2026-06-03 17:05 UTC (permalink / raw)
To: pkshih; +Cc: linux-wireless, rtl8821cerfe2, zenmchen
Ping-Ke Shih <pkshih@realtek.com> 於 2026年6月1日週一 下午2:10寫道:
>
> Zenm Chen <zenmchen@gmail.com> wrote:
> > Add the ids 056e:4027 and 056e:4028 into the device table to support
> > ELECOM WD{B,C}-X600DU2M-B, two new 8831bu-based adapters.
> >
> > Compile tested only.
> >
> > Link: https://github.com/morrownr/rtw89/commit/9e2db2834b37c6adfc4b872a9ef56c927df22bea
>
> As I saw surface of this Link ".../commit/...", I'd ask you to remove
> the Link, because a github commit isn't so important to be a commit message.
>
> Look deeper.... The Link's content (the comment part) is to indicate where
> you got these USB devices ID, right?
> If so, maybe you can just mention that you collected these ID from [1].
>
> (change to this style instead of formal Link)
> [1] https://github.com/morrownr/rtw89/commit/9e2db2834b37c6adfc4b872a9ef56c927df22bea
>
> Then, if a reviewer wants to save himself time, he can just ignore the link.
>
> Please apply it to this patchset. Thanks.
>
> Ping-Ke
>
Okay, will fix in the next version, thanks!
^ permalink raw reply [flat|nested] 7+ messages in thread