diff options
author | Andre Przywara <andre.przywara@arm.com> | 2023-01-11 13:32:28 +0000 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2023-01-12 14:26:04 +0100 |
commit | be53771c87f4e322a9835d3faa9cd73a4ecdec5b (patch) | |
tree | ab93ed920ee3e0b594a1d0c6291a4ffb9f0a3664 | |
parent | ae9dcb91c6069e20b3b9505d79cbc89fd6e086f5 (diff) | |
download | linux-stable-be53771c87f4e322a9835d3faa9cd73a4ecdec5b.tar.gz linux-stable-be53771c87f4e322a9835d3faa9cd73a4ecdec5b.tar.bz2 linux-stable-be53771c87f4e322a9835d3faa9cd73a4ecdec5b.zip |
r8152: add vendor/device ID pair for Microsoft Devkit
The Microsoft Devkit 2023 is a an ARM64 based machine featuring a
Realtek 8153 USB3.0-to-GBit Ethernet adapter. As in their other
machines, Microsoft uses a custom USB device ID.
Add the respective ID values to the driver. This makes Ethernet work on
the MS Devkit device. The chip has been visually confirmed to be a
RTL8153.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Link: https://lore.kernel.org/r/20230111133228.190801-1-andre.przywara@arm.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
-rw-r--r-- | drivers/net/usb/r8152.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c index a481a1d831e2..23da1d9dafd1 100644 --- a/drivers/net/usb/r8152.c +++ b/drivers/net/usb/r8152.c @@ -9836,6 +9836,7 @@ static const struct usb_device_id rtl8152_table[] = { REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07ab), REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07c6), REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0927), + REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0c5e), REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101), REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x304f), REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3054), |