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 BFBA68634A; Mon, 6 Jan 2025 15:22:01 +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=1736176921; cv=none; b=K5fmcqqyJDp8ZtUxMUbNBH2IUcxm78MjtJurnMseT5JzpNKp92gbNvFTkKZkHRjjpzcDSW79mBBfDltbzRCWWuHeiwoHhZbwCdh+hWFWS2/7rMMOIKOqgTq28Ec9osgtG5gybnWirdguN9u+7PfhxFUC5EoUnfPUUX1T9zjsjok= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736176921; c=relaxed/simple; bh=VLfdelL64jX6mq3q8BxiKQxZ+KtrrDVp6+EeGXyNHAA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=kr1mlBv49U+hJrdgmY4INaHOE2bRKte4Ih1uxQRQh+R2C7be3cl27GiVvxcZwQrtHB5ALCTi0RyU8PGBQHkUIWuIEz4iDrG38Bp3g+molLCtMD0wi+JwjiK7DJttZwLp2FMbS+g2V+fQHrXgNsm3XsLkp91Skobi0Tag7qk6sPw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=U1gXQxx2; 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="U1gXQxx2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 43245C4CED2; Mon, 6 Jan 2025 15:22:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1736176921; bh=VLfdelL64jX6mq3q8BxiKQxZ+KtrrDVp6+EeGXyNHAA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=U1gXQxx2KS92kkogtlLwAogebBxlXHlJkoxYkk3s6Kq+gbMhcrXiY4mudhMe1PLmV XGulkB4I5yz0mssJnjtU68t0u3KRp9YnAsVPiJmka1/k/zFwu/0OKI0hpnZxd5JEZu XXYSCyLLGJ9l2VhXooKRf9WcmJqyJdOUZmJ/m4qo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Pascal Hambourg , Jakub Kicinski Subject: [PATCH 6.1 73/81] sky2: Add device ID 11ab:4373 for Marvell 88E8075 Date: Mon, 6 Jan 2025 16:16:45 +0100 Message-ID: <20250106151132.184584703@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20250106151129.433047073@linuxfoundation.org> References: <20250106151129.433047073@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-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 */