From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id ECE871D63EF; Tue, 27 May 2025 17:44:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1748367890; cv=none; b=IVwJQD2b1ggCfuOLp2k5eWhVaafFpFAA7E9afM824ZNBFLfdCREYWxgQo6wIRYYYCNqceKcf/97b32Q+w+RE9B5kbr3ed3DvIJjJx14NUEgl4o9dMpf2XgxVv9r41NwuNxP5iEhVMFnfb+8riBEKzBOmPcmxQEok/7T60Dl4byc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1748367890; c=relaxed/simple; bh=e0ifEFbm74f61rJQHXPgvSszFwq9fQdh3uqPtM2oC98=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=JDdjWY7DdqPkt0+hLUSFp/61aEijlNwSiOQh6Smp4dIGB2xxraKRITh9IopLPzYS+76dPZyZknEYF++GrJ8wfVeP5ACqOibdmuHReRgMbRZPW3tDvuy41V7M48IooIlDPf9MxHkpOcQh3XX7gCddeONALVzeaWWLETb/PyWpBXk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YJyFZTnx; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="YJyFZTnx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 67836C4CEEB; Tue, 27 May 2025 17:44:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1748367889; bh=e0ifEFbm74f61rJQHXPgvSszFwq9fQdh3uqPtM2oC98=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YJyFZTnxSdwbHSKJ55PEYjAGSY52Ult1/1YynZhbEDCr69wTGmyJ+zpRdxKPSRCMv IguiQkzXjfHpTvU9+ixwwkYWj03EXwzG2nCWnLRWL2cR9u0SQXFLpkwHobeRGodsoR pQ+7HbOnZbJZWwFlV7Sl1liimg4SGArpOKCG/bBc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Aleksander Jan Bajkowski , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.14 531/783] r8152: add vendor/device ID pair for Dell Alienware AW1022z Date: Tue, 27 May 2025 18:25:28 +0200 Message-ID: <20250527162534.772310943@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250527162513.035720581@linuxfoundation.org> References: <20250527162513.035720581@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Aleksander Jan Bajkowski [ Upstream commit 848b09d53d923b4caee5491f57a5c5b22d81febc ] 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 Link: https://patch.msgid.link/20250206224033.980115-1-olek2@wp.pl Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/usb/r8152.c | 1 + include/linux/usb/r8152.h | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c index 96fa3857d8e25..2cab046749a92 100644 --- a/drivers/net/usb/r8152.c +++ b/drivers/net/usb/r8152.c @@ -10085,6 +10085,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) }, {} }; diff --git a/include/linux/usb/r8152.h b/include/linux/usb/r8152.h index 33a4c146dc19c..2ca60828f28bb 100644 --- a/include/linux/usb/r8152.h +++ b/include/linux/usb/r8152.h @@ -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) -- 2.39.5