The Lenovo USB-C Travel Hub supports MAC passthrough.
Signed-off-by: André Apitzsch <[email protected]>
---
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
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 <[email protected]>
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/
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 <[email protected]>
>
> 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/[email protected]/
André Apitzsch