Commit 848b09d5 authored by Aleksander Jan Bajkowski's avatar Aleksander Jan Bajkowski Committed by Jakub Kicinski
Browse files

r8152: add vendor/device ID pair for Dell Alienware AW1022z



The Dell AW1022z is an RTL8156B based 2.5G Ethernet controller.

Add the vendor and product ID values to the driver. This makes Ethernet
work with the adapter.

Signed-off-by: default avatarAleksander Jan Bajkowski <olek2@wp.pl>
Link: https://patch.msgid.link/20250206224033.980115-1-olek2@wp.pl


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 7aba6664
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -10079,6 +10079,7 @@ static const struct usb_device_id rtl8152_table[] = {
	{ USB_DEVICE(VENDOR_ID_NVIDIA,  0x09ff) },
	{ USB_DEVICE(VENDOR_ID_TPLINK,  0x0601) },
	{ USB_DEVICE(VENDOR_ID_DLINK,   0xb301) },
	{ USB_DEVICE(VENDOR_ID_DELL,    0xb097) },
	{ USB_DEVICE(VENDOR_ID_ASUS,    0x1976) },
	{}
};
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@
#define VENDOR_ID_NVIDIA		0x0955
#define VENDOR_ID_TPLINK		0x2357
#define VENDOR_ID_DLINK			0x2001
#define VENDOR_ID_DELL			0x413c
#define VENDOR_ID_ASUS			0x0b05

#if IS_REACHABLE(CONFIG_USB_RTL8152)