This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 02645974cb17835bcf0efebb3f07a7e9f2f94728 Author: zhanghongyu <[email protected]> AuthorDate: Tue May 13 20:54:13 2025 +0800 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 <[email protected]> --- 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
