diff options
author | Kevin Bowling <kbowling@FreeBSD.org> | 2022-05-15 22:07:59 +0000 |
---|---|---|
committer | Kevin Bowling <kbowling@FreeBSD.org> | 2022-05-18 00:32:45 +0000 |
commit | 53875d68e336401d8e357b2bf1130e5c685da341 (patch) | |
tree | b5b718bf2e5cc814b7ad3256693e2e7d30f12f9f | |
parent | 81091a7ca11acd5adcc673ffd06f8e08791386ea (diff) | |
download | src-53875d68e336401d8e357b2bf1130e5c685da341.tar.gz src-53875d68e336401d8e357b2bf1130e5c685da341.zip |
igc: Update PCI IDs
bf0aa72f:
I226-K PCI ID got clarified by intel. Add a new I226 ID while here.
Approved by: grehan
Differential Revision: https://reviews.freebsd.org/D35218
48a1a6be:
igc: Fix typo in PCI ID define usage
Reported by: jenkins
Fixes: bf0aa72f1f59 igc: Update PCI IDs
(cherry picked from commit bf0aa72f1f5911912817a2d3feb4010c8239512c)
(cherry picked from commit 48a1a6be1968e600235afd0f2b78bf633c065430)
-rw-r--r-- | sys/dev/igc/if_igc.c | 1 | ||||
-rw-r--r-- | sys/dev/igc/igc_hw.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/igc/if_igc.c b/sys/dev/igc/if_igc.c index 06b78394cd2f..d15e5917fcd9 100644 --- a/sys/dev/igc/if_igc.c +++ b/sys/dev/igc/if_igc.c @@ -59,6 +59,7 @@ static pci_vendor_info_t igc_vendor_info_array[] = PVID(0x8086, IGC_DEV_ID_I225_K2, "Intel(R) Ethernet Controller I225-K(2)"), PVID(0x8086, IGC_DEV_ID_I225_LMVP, "Intel(R) Ethernet Controller I225-LMvP(2)"), PVID(0x8086, IGC_DEV_ID_I226_K, "Intel(R) Ethernet Controller I226-K"), + PVID(0x8086, IGC_DEV_ID_I226_LMVP, "Intel(R) Ethernet Controller I226-LMvP"), PVID(0x8086, IGC_DEV_ID_I225_IT, "Intel(R) Ethernet Controller I225-IT(2)"), PVID(0x8086, IGC_DEV_ID_I226_LM, "Intel(R) Ethernet Controller I226-LM"), PVID(0x8086, IGC_DEV_ID_I226_V, "Intel(R) Ethernet Controller I226-V"), diff --git a/sys/dev/igc/igc_hw.h b/sys/dev/igc/igc_hw.h index a8323a8578a9..6a22593584ce 100644 --- a/sys/dev/igc/igc_hw.h +++ b/sys/dev/igc/igc_hw.h @@ -22,7 +22,8 @@ struct igc_hw; #define IGC_DEV_ID_I220_V 0x15F7 #define IGC_DEV_ID_I225_K2 0x3101 #define IGC_DEV_ID_I225_LMVP 0x5502 -#define IGC_DEV_ID_I226_K 0x5504 +#define IGC_DEV_ID_I226_K 0x3102 +#define IGC_DEV_ID_I226_LMVP 0x5503 #define IGC_DEV_ID_I225_IT 0x0D9F #define IGC_DEV_ID_I226_LM 0x125B #define IGC_DEV_ID_I226_V 0x125C |