Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Aleksander Jan Bajkowski <olek2@wp.pl>
Link: https://patch.msgid.link/20250206224033.980115-1-olek2@wp.pl
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Aleksander Jan Bajkowski and committed by
Jakub Kicinski
848b09d5 7aba6664

+2
+1
drivers/net/usb/r8152.c
··· 10079 10079 { USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff) }, 10080 10080 { USB_DEVICE(VENDOR_ID_TPLINK, 0x0601) }, 10081 10081 { USB_DEVICE(VENDOR_ID_DLINK, 0xb301) }, 10082 + { USB_DEVICE(VENDOR_ID_DELL, 0xb097) }, 10082 10083 { USB_DEVICE(VENDOR_ID_ASUS, 0x1976) }, 10083 10084 {} 10084 10085 };
+1
include/linux/usb/r8152.h
··· 30 30 #define VENDOR_ID_NVIDIA 0x0955 31 31 #define VENDOR_ID_TPLINK 0x2357 32 32 #define VENDOR_ID_DLINK 0x2001 33 + #define VENDOR_ID_DELL 0x413c 33 34 #define VENDOR_ID_ASUS 0x0b05 34 35 35 36 #if IS_REACHABLE(CONFIG_USB_RTL8152)