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 6BF0A13B592; Mon, 6 Jan 2025 15:48:06 +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=1736178486; cv=none; b=Y+kUzbcTr2tK4E0Xb5Ry6H1vzbShktCRZCa/w0zD32+hpBOhrIQUUoIl2dpQ1Bb2Vp3Vo7SV4RduQRAOzI+mKHNKyxMM/aiRSnl1tJGxhv0XLNWUtkCfOmDROxjRJ/iKydxf819tMeGput/kxHCMEhyqNbmtGlNgMShm6qDpmfU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736178486; c=relaxed/simple; bh=sxDFuAEIcY4sT5ifhy0sukaoCVeUD6O05DSoA35cIlE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=UGx03+su/KZ+9qVPmvOrsqUqGE27P/k+c+kB6vwdoTzCD0VTSPHaGTYIaPfocpDCZWuJcuyyf+n0M8bDC7UvdVFXhlN61tq03SFtykeL/Hez/djR8Vk2FgkAhK46ZFmGBtm9agOZDGxbeyeoAITVfDUaiR4HpUy0pAG9FpsRr6M= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=kzZ/rdwq; 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="kzZ/rdwq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E6856C4CED2; Mon, 6 Jan 2025 15:48:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1736178486; bh=sxDFuAEIcY4sT5ifhy0sukaoCVeUD6O05DSoA35cIlE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kzZ/rdwqqvKKD1V1JLmMWg/iuFFubwQVQiZeukB88DDUqrjWpOZL58tp457yAk8Gu R/whXOL7IhSYO3g2OHjEziAwtu2g6ETviwARJmvaK8cTfomDXW87Ks0w9VFnYrtZQh YXCJWpmkmMO4FHt5fAuXMtBPSWIfJL12r1fYpfYA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Pascal Hambourg , Jakub Kicinski Subject: [PATCH 5.10 135/138] sky2: Add device ID 11ab:4373 for Marvell 88E8075 Date: Mon, 6 Jan 2025 16:17:39 +0100 Message-ID: <20250106151138.344888009@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20250106151133.209718681@linuxfoundation.org> References: <20250106151133.209718681@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 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pascal Hambourg commit 03c8d0af2e409e15c16130b185e12b5efba0a6b9 upstream. A Marvell 88E8075 ethernet controller has this device ID instead of 11ab:4370 and works fine with the sky2 driver. Signed-off-by: Pascal Hambourg Cc: stable@vger.kernel.org Link: https://patch.msgid.link/10165a62-99fb-4be6-8c64-84afd6234085@plouf.fr.eu.org Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- drivers/net/ethernet/marvell/sky2.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/net/ethernet/marvell/sky2.c +++ b/drivers/net/ethernet/marvell/sky2.c @@ -130,6 +130,7 @@ static const struct pci_device_id sky2_i { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436C) }, /* 88E8072 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436D) }, /* 88E8055 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4370) }, /* 88E8075 */ + { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4373) }, /* 88E8075 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4380) }, /* 88E8057 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4381) }, /* 88E8059 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4382) }, /* 88E8079 */