[PATCH] r8152: Add MAC passthrough support for Lenovo Travel Hub

André Apitzsch posted 1 patch 3 years, 7 months ago
There is a newer version of this series
drivers/net/usb/r8152.c | 2 ++
1 file changed, 2 insertions(+)
[PATCH] r8152: Add MAC passthrough support for Lenovo Travel Hub
Posted by André Apitzsch 3 years, 7 months ago
The Lenovo USB-C Travel Hub supports MAC passthrough.

Signed-off-by: André Apitzsch <git@apitzsch.eu>
---
 drivers/net/usb/r8152.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c
index d142ac8fcf6e..6fe50797e3c5 100644
--- a/drivers/net/usb/r8152.c
+++ b/drivers/net/usb/r8152.c
@@ -770,6 +770,7 @@ enum rtl8152_flags {
 	RX_EPROTO,
 };
 
+#define DEVICE_ID_LENOVO_USB_C_TRAVEL_HUB		0x721e
 #define DEVICE_ID_THINKPAD_THUNDERBOLT3_DOCK_GEN2	0x3082
 #define DEVICE_ID_THINKPAD_USB_C_DONGLE			0x720c
 #define DEVICE_ID_THINKPAD_USB_C_DOCK_GEN2		0xa387
@@ -9581,6 +9582,7 @@ static bool rtl8152_supports_lenovo_macpassthru(struct usb_device *udev)
 
 	if (vendor_id == VENDOR_ID_LENOVO) {
 		switch (product_id) {
+		case DEVICE_ID_LENOVO_USB_C_TRAVEL_HUB:
 		case DEVICE_ID_THINKPAD_THUNDERBOLT3_DOCK_GEN2:
 		case DEVICE_ID_THINKPAD_USB_C_DOCK_GEN2:
 		case DEVICE_ID_THINKPAD_USB_C_DOCK_GEN3:
-- 
2.37.2

Re: [PATCH] r8152: Add MAC passthrough support for Lenovo Travel Hub
Posted by Jakub Kicinski 3 years, 7 months ago
On Sat, 27 Aug 2022 20:47:29 +0200 André Apitzsch wrote:
> The Lenovo USB-C Travel Hub supports MAC passthrough.
> 
> Signed-off-by: André Apitzsch <git@apitzsch.eu>

Which tree did you base this patch on?

Please rebase on top of net-next [1] and repost with [PATCH net-next] in
the subject.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/
Re: [PATCH] r8152: Add MAC passthrough support for Lenovo Travel Hub
Posted by André Apitzsch 3 years, 7 months ago
Am Mittwoch, dem 31.08.2022 um 12:18 -0700 schrieb Jakub Kicinski:
> On Sat, 27 Aug 2022 20:47:29 +0200 André Apitzsch wrote:
> > The Lenovo USB-C Travel Hub supports MAC passthrough.
> > 
> > Signed-off-by: André Apitzsch <git@apitzsch.eu>
> 
> Which tree did you base this patch on?
> 
> Please rebase on top of net-next [1] and repost with [PATCH net-next] in
> the subject.
> 
> [1] https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/

The patch was based on
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/

Rebased and repost, see
https://lore.kernel.org/linux-usb/20220901170013.7975-1-git@apitzsch.eu/

André Apitzsch