* [PATCH net-next] net: usb: r8152: Add device ID for TP-Link UE200
@ 2025-06-09 14:55 Lucas Sanchez Sagrado
2025-06-09 15:55 ` Subbaraya Sundeep
2025-06-10 21:50 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Lucas Sanchez Sagrado @ 2025-06-09 14:55 UTC (permalink / raw)
To: andrew+netdev, davem, edumazet, kuba, pabeni
Cc: Lucas Sanchez Sagrado, linux-usb, netdev, linux-kernel
The TP-Link UE200 is a RTL8152B based USB 2.0 Fast Ethernet adapter. This
patch adds its device ID. It has been tested on Ubuntu 22.04.5.
Signed-off-by: Lucas Sanchez Sagrado <lucsansag@gmail.com>
---
drivers/net/usb/r8152.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c
index d6589b24c68d..44cba7acfe7d 100644
--- a/drivers/net/usb/r8152.c
+++ b/drivers/net/usb/r8152.c
@@ -10054,6 +10054,7 @@ static const struct usb_device_id rtl8152_table[] = {
{ USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041) },
{ USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff) },
{ USB_DEVICE(VENDOR_ID_TPLINK, 0x0601) },
+ { USB_DEVICE(VENDOR_ID_TPLINK, 0x0602) },
{ USB_DEVICE(VENDOR_ID_DLINK, 0xb301) },
{ USB_DEVICE(VENDOR_ID_DELL, 0xb097) },
{ USB_DEVICE(VENDOR_ID_ASUS, 0x1976) },
base-commit: 2c7e4a2663a1ab5a740c59c31991579b6b865a26
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] net: usb: r8152: Add device ID for TP-Link UE200
2025-06-09 14:55 [PATCH net-next] net: usb: r8152: Add device ID for TP-Link UE200 Lucas Sanchez Sagrado
@ 2025-06-09 15:55 ` Subbaraya Sundeep
2025-06-10 21:50 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Subbaraya Sundeep @ 2025-06-09 15:55 UTC (permalink / raw)
To: Lucas Sanchez Sagrado
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, linux-usb, netdev,
linux-kernel
On 2025-06-09 at 14:55:36, Lucas Sanchez Sagrado (lucsansag@gmail.com) wrote:
> The TP-Link UE200 is a RTL8152B based USB 2.0 Fast Ethernet adapter. This
> patch adds its device ID. It has been tested on Ubuntu 22.04.5.
>
> Signed-off-by: Lucas Sanchez Sagrado <lucsansag@gmail.com>
Reviewed-by: Subbaraya Sundeep <sbhatta@marvell.com>
Thanks,
Sundeep
> ---
> drivers/net/usb/r8152.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c
> index d6589b24c68d..44cba7acfe7d 100644
> --- a/drivers/net/usb/r8152.c
> +++ b/drivers/net/usb/r8152.c
> @@ -10054,6 +10054,7 @@ static const struct usb_device_id rtl8152_table[] = {
> { USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041) },
> { USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff) },
> { USB_DEVICE(VENDOR_ID_TPLINK, 0x0601) },
> + { USB_DEVICE(VENDOR_ID_TPLINK, 0x0602) },
> { USB_DEVICE(VENDOR_ID_DLINK, 0xb301) },
> { USB_DEVICE(VENDOR_ID_DELL, 0xb097) },
> { USB_DEVICE(VENDOR_ID_ASUS, 0x1976) },
>
> base-commit: 2c7e4a2663a1ab5a740c59c31991579b6b865a26
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] net: usb: r8152: Add device ID for TP-Link UE200
2025-06-09 14:55 [PATCH net-next] net: usb: r8152: Add device ID for TP-Link UE200 Lucas Sanchez Sagrado
2025-06-09 15:55 ` Subbaraya Sundeep
@ 2025-06-10 21:50 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-06-10 21:50 UTC (permalink / raw)
To: Lucas Sanchez Sagrado
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, linux-usb, netdev,
linux-kernel
Hello:
This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Mon, 9 Jun 2025 16:55:36 +0200 you wrote:
> The TP-Link UE200 is a RTL8152B based USB 2.0 Fast Ethernet adapter. This
> patch adds its device ID. It has been tested on Ubuntu 22.04.5.
>
> Signed-off-by: Lucas Sanchez Sagrado <lucsansag@gmail.com>
> ---
> drivers/net/usb/r8152.c | 1 +
> 1 file changed, 1 insertion(+)
>
> [...]
Here is the summary with links:
- [net-next] net: usb: r8152: Add device ID for TP-Link UE200
https://git.kernel.org/netdev/net/c/dc9c67820f81
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-10 21:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-09 14:55 [PATCH net-next] net: usb: r8152: Add device ID for TP-Link UE200 Lucas Sanchez Sagrado
2025-06-09 15:55 ` Subbaraya Sundeep
2025-06-10 21:50 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox