mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
drivers/net/e1000.c: add PIDVID of e1000 NIC
add the network card models whose functions have been confirmed to the id table. Signed-off-by: zhanghongyu <zhanghongyu@xiaomi.com>
This commit is contained in:
parent
380bcabba8
commit
446aecdd61
1 changed files with 20 additions and 0 deletions
|
|
@ -261,10 +261,30 @@ static const struct e1000_type_s g_e1000_82574l =
|
|||
|
||||
static const struct pci_device_id_s g_e1000_id_table[] =
|
||||
{
|
||||
{
|
||||
PCI_DEVICE(0x8086, 0x1a1c),
|
||||
.driver_data = (uintptr_t)&g_e1000_i219
|
||||
},
|
||||
{
|
||||
PCI_DEVICE(0x8086, 0x1a1e),
|
||||
.driver_data = (uintptr_t)&g_e1000_i219
|
||||
},
|
||||
{
|
||||
PCI_DEVICE(0x8086, 0x0d4c),
|
||||
.driver_data = (uintptr_t)&g_e1000_i219
|
||||
},
|
||||
{
|
||||
PCI_DEVICE(0x8086, 0x0d4d),
|
||||
.driver_data = (uintptr_t)&g_e1000_i219
|
||||
},
|
||||
{
|
||||
PCI_DEVICE(0x8086, 0x15b8),
|
||||
.driver_data = (uintptr_t)&g_e1000_i219
|
||||
},
|
||||
{
|
||||
PCI_DEVICE(0x8086, 0x15bb),
|
||||
.driver_data = (uintptr_t)&g_e1000_i219
|
||||
},
|
||||
{
|
||||
PCI_DEVICE(0x8086, 0x100e),
|
||||
.driver_data = (uintptr_t)&g_e1000_82540em
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue