From 02645974cb17835bcf0efebb3f07a7e9f2f94728 Mon Sep 17 00:00:00 2001 From: zhanghongyu Date: Tue, 13 May 2025 20:54:13 +0800 Subject: [PATCH] drivers/net/igc.c: add device id 0x15f3 support add the network card models whose functions have been confirmed to the id table. Signed-off-by: zhanghongyu --- drivers/net/igc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/net/igc.c b/drivers/net/igc.c index 5c7304f1a14..96fef7e275b 100644 --- a/drivers/net/igc.c +++ b/drivers/net/igc.c @@ -237,6 +237,10 @@ static const struct pci_device_id_s g_igc_id_table[] = PCI_DEVICE(0x8086, 0x15f2), .driver_data = (uintptr_t)&g_igc_i225lm }, + { + PCI_DEVICE(0x8086, 0x15f3), + .driver_data = (uintptr_t)&g_igc_i225lm + }, { PCI_DEVICE(0x8086, 0x125c), .driver_data = (uintptr_t)&g_igc_i226v