diff options
author | Jan Kiszka <jan.kiszka@web.de> | 2014-09-15 08:00:06 +0200 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2014-09-16 16:00:50 +0100 |
commit | 0df7ce96416872931fc7fd3d90dc5781944d41a9 (patch) | |
tree | fca82fdc16d8277c50436e55aabb383d8fda03dd /src/drivers/net | |
parent | 5de37e124fd21c8f918f3fe26fc33a764709ead4 (diff) | |
download | ipxe-0df7ce96416872931fc7fd3d90dc5781944d41a9.zip ipxe-0df7ce96416872931fc7fd3d90dc5781944d41a9.tar.gz ipxe-0df7ce96416872931fc7fd3d90dc5781944d41a9.tar.bz2 |
[intel] Add I217-LM PCI ID
Add the ID for the LM variant and differentiate it from the I217-V.
Signed-off-by: Jan Kiszka <jan.kiszka@web.de>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers/net')
-rw-r--r-- | src/drivers/net/intel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drivers/net/intel.c b/src/drivers/net/intel.c index d29bd16..8cc0e7f 100644 --- a/src/drivers/net/intel.c +++ b/src/drivers/net/intel.c @@ -996,7 +996,8 @@ static struct pci_device_id intel_nics[] = { PCI_ROM ( 0x8086, 0x1526, "82576-5", "82576", 0 ), PCI_ROM ( 0x8086, 0x1527, "82580-f2", "82580 Fiber", 0 ), PCI_ROM ( 0x8086, 0x1533, "i210", "I210", 0 ), - PCI_ROM ( 0x8086, 0x153b, "i217", "I217", 0 ), + PCI_ROM ( 0x8086, 0x153a, "i217lm", "I217-LM", 0 ), + PCI_ROM ( 0x8086, 0x153b, "i217v", "I217-V", 0 ), PCI_ROM ( 0x8086, 0x294c, "82566dc-2", "82566DC-2", 0 ), PCI_ROM ( 0x8086, 0x2e6e, "cemedia", "CE Media Processor", 0 ), }; |