Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 May 2022 00:33:42 GMT
From:      Kevin Bowling <kbowling@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 53875d68e336 - stable/12 - igc: Update PCI IDs
Message-ID:  <202205180033.24I0XgAd091991@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by kbowling (ports committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=53875d68e336401d8e357b2bf1130e5c685da341

commit 53875d68e336401d8e357b2bf1130e5c685da341
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:32:45 +0000

    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)
---
 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 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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202205180033.24I0XgAd091991>