git: 49d682cb1a54 - stable/13 - igc: Update PCI IDs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 18 May 2022 00:30:44 UTC
The branch stable/13 has been updated by kbowling (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=49d682cb1a54c31f07df0792618a1f931f3c5fa6
commit 49d682cb1a54c31f07df0792618a1f931f3c5fa6
Author: Kevin Bowling <kbowling@FreeBSD.org>
AuthorDate: 2022-05-15 22:07:59 +0000
Commit: Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2022-05-18 00:30:36 +0000
igc: Update PCI IDs
bf0aa72f:
igc: Update PCI IDs
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)
---
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 436493185d5c..565f3df61d96 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