git: bf0aa72f1f59 - main - igc: Update PCI IDs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 15 May 2022 22:10:11 UTC
The branch main has been updated by kbowling (ports committer): URL: https://cgit.FreeBSD.org/src/commit/?id=bf0aa72f1f5911912817a2d3feb4010c8239512c commit bf0aa72f1f5911912817a2d3feb4010c8239512c Author: Kevin Bowling <kbowling@FreeBSD.org> AuthorDate: 2022-05-15 22:07:59 +0000 Commit: Kevin Bowling <kbowling@FreeBSD.org> CommitDate: 2022-05-15 22:09:58 +0000 igc: Update PCI IDs I226-K PCI ID got clarified by intel. Add a new I226 ID while here. Approved by: grehan MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D35218 --- sys/dev/igc/if_igc.c | 1 + sys/dev/igc/igc_hw.h | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/igc/if_igc.c b/sys/dev/igc/if_igc.c index f2803c01850e..10f76b44ea45 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_LVMP, "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