File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -818,6 +818,10 @@ config NET_IGC_I225LM
818
818
bool "Intel I225LM"
819
819
default n
820
820
821
+ config NET_IGC_I226V
822
+ bool "Intel I226V"
823
+ default n
824
+
821
825
endif # NET_IGC
822
826
823
827
endif # NETDEVICES
Original file line number Diff line number Diff line change @@ -213,13 +213,29 @@ static const struct igc_type_s g_igc_i225lm =
213
213
};
214
214
#endif
215
215
216
+ #ifdef CONFIG_NET_IGC_I226V
217
+ /* Intel I226V */
218
+
219
+ static const struct igc_type_s g_igc_i226v =
220
+ {
221
+ .desc_align = 128 ,
222
+ .mta_regs = 128
223
+ };
224
+ #endif
225
+
216
226
static const struct pci_device_id_s g_igc_id_table [] =
217
227
{
218
228
#ifdef CONFIG_NET_IGC_I225LM
219
229
{
220
230
PCI_DEVICE (0x8086 , 0x15f2 ),
221
231
.driver_data = (uintptr_t )& g_igc_i225lm
222
232
},
233
+ #endif
234
+ #ifdef CONFIG_NET_IGC_I226V
235
+ {
236
+ PCI_DEVICE (0x8086 , 0x125c ),
237
+ .driver_data = (uintptr_t )& g_igc_i226v
238
+ },
223
239
#endif
224
240
{ }
225
241
};
You can’t perform that action at this time.
0 commit comments