]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
igc: Add new device ID
authorSasha Neftin <sasha.neftin@intel.com>
Thu, 10 Dec 2020 19:08:12 +0000 (11:08 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 10 Dec 2020 21:13:24 +0000 (13:13 -0800)
Add new device ID for the next step of the silicon and
reflect the I226_K part.

Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/intel/igc/igc_base.c
drivers/net/ethernet/intel/igc/igc_hw.h
drivers/net/ethernet/intel/igc/igc_main.c

index fd37d2c203af784dfe4e4988f600de047a1f6fca..d0700d48ecf9ba095ae5d0e0af4abf66f73089b7 100644 (file)
@@ -213,6 +213,7 @@ static s32 igc_get_invariants_base(struct igc_hw *hw)
        case IGC_DEV_ID_I220_V:
        case IGC_DEV_ID_I225_K:
        case IGC_DEV_ID_I225_K2:
+       case IGC_DEV_ID_I226_K:
        case IGC_DEV_ID_I225_LMVP:
        case IGC_DEV_ID_I225_IT:
        case IGC_DEV_ID_I226_LM:
index 55dae7c4703f8e66dd652724138a0e3b35e9eb3e..9da5f83ce456671527028a36b4ed016766f1dfa9 100644 (file)
@@ -23,6 +23,7 @@
 #define IGC_DEV_ID_I225_K                      0x3100
 #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_I225_IT                     0x0D9F
 #define IGC_DEV_ID_I226_LM                     0x125B
 #define IGC_DEV_ID_I226_V                      0x125C
index b673ac1199bbc71832b62ac84f945bca55b084da..afd6a62da29dd82a80af53b3c2042d5a09ce4709 100644 (file)
@@ -45,6 +45,7 @@ static const struct pci_device_id igc_pci_tbl[] = {
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I220_V), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_K), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_K2), board_base },
+       { PCI_VDEVICE(INTEL, IGC_DEV_ID_I226_K), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_LMVP), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_IT), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I226_LM), board_base },