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 6A97B155352; Mon, 6 Jan 2025 15:39:58 +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=1736177998; cv=none; b=bLxZ5Zz/WlBfP6eVCh8ewOdpHF62KfckoZvReQr2eh8MSQGDxZHX7gW/rJNrycbg7EHh/PpPizlUWFLnxXEl2Ve0ivfioqzxsHSleEIoreMKCmEfQtZOeiwCVVLAqoiMDfqhvF9MLBLEBrAisIInDDo9gOJKibBXLBZcxzgG6ug= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736177998; c=relaxed/simple; bh=5nfVyHtmUIR7pY1V1nxEaR13TayNzVmil/9z2eTwFRk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=IUix9oo1SOoaWjVXgSLgseOLNyKRn35DkeUfsiC3gHf15mRvGHKHyx/qpTKu17Cn6CmMKDqB4IEEAmzM4vs8LzD5aWSaGSP8BU8cEaanA+MYElZv6zwJfM6lnyWH2S+xhqWrsv2KhlSIs6N7woO6iAHcg7iAvf84E3+DX2imHRE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=FkNZ8e9r; 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="FkNZ8e9r" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DFE21C4CED2; Mon, 6 Jan 2025 15:39:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1736177998; bh=5nfVyHtmUIR7pY1V1nxEaR13TayNzVmil/9z2eTwFRk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FkNZ8e9rw6qA70gXdOoe4HKqlvnS/gtZOMZMH/q3376Kah5IX01GuwS1S+NtXrF2O QGRsIQouSXHBcZHkUzkV14yA7qo3hBvuF+LbpgNvxUK99k2SXeLoD7OJj1kcoEpXta JfnNefKF0KvhUdArWvWqTYKdRsclshjy+c1y7tn0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Pascal Hambourg , Jakub Kicinski Subject: [PATCH 6.12 128/156] sky2: Add device ID 11ab:4373 for Marvell 88E8075 Date: Mon, 6 Jan 2025 16:16:54 +0100 Message-ID: <20250106151146.553966450@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20250106151141.738050441@linuxfoundation.org> References: <20250106151141.738050441@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.12-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 */