[PATCH] sky2: Add device ID 11ab:4373 for Marvell 88E8075
From: Pascal Hambourg
Date: Mon Dec 23 2024 - 11:47:18 EST
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 <pascal@xxxxxxxxxxxxxxx>
Cc: stable@xxxxxxxxxxxxxxx
---
On a laptop with such ethernet controller, the ethernet interface works
fine after running the following commands:
# modprobe sky2
# echo 11ab 4373 > /sys/bus/pci/drivers/sky2/new_id
# lspci -kd ::200
02:00.0 Ethernet controller: Marvell Technology Group Ltd. Device 4373
(rev 10)
Subsystem: Samsung Electronics Co Ltd Device c102
Kernel driver in use: sky2
Kernel modules:
drivers/net/ethernet/marvell/sky2.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/ethernet/marvell/sky2.c b/drivers/net/ethernet/marvell/sky2.c
index 3914cd9210d4..988fa28cfb5f 100644
--- 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_id_table[] = {
{ 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 */
--
2.39.5