]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[igbvf] Add i350 virtual function support
authorErik Jacobson <ejacobson@ddn.com>
Thu, 5 Apr 2012 16:31:57 +0000 (11:31 -0500)
committerMichael Brown <mcb30@ipxe.org>
Tue, 10 Apr 2012 12:53:24 +0000 (13:53 +0100)
Modified-by: Michael Brown <mcb30@ipxe.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/drivers/net/igbvf/igbvf_main.c
src/drivers/net/igbvf/igbvf_vf.h

index 1f7e1dfd9afb9aef15ba4ebc461e7a3944e3ca2f..cd189ecb0d69c907552986095b630bfcb0eb503f 100644 (file)
@@ -942,7 +942,8 @@ void igbvf_remove ( struct pci_device *pdev )
 }
 
 static struct pci_device_id igbvf_pci_tbl[] = {
-       PCI_ROM(0x8086, 0x10CA, "igbvf", "E1000_DEV_ID_82576_VF", 0)
+       PCI_ROM(0x8086, 0x10CA, "igbvf", "E1000_DEV_ID_82576_VF", 0),
+       PCI_ROM(0x8086, 0x1520, "i350vf", "E1000_DEV_ID_I350_VF", 0),
 };
 
 
index ce8ad796c32b2da1eb1a8ea43ad1223ad4fccbd1..8d8963fea73980f6a9437456029f3f82e812b640 100644 (file)
@@ -54,6 +54,7 @@ FILE_LICENCE ( GPL2_ONLY );
 struct e1000_hw;
 
 #define E1000_DEV_ID_82576_VF                 0x10CA
+#define E1000_DEV_ID_I350_VF                  0x1520
 
 #define E1000_VF_INIT_TIMEOUT 200 /* Number of retries to clear RSTI */