Skip to content

Commit

Permalink
[igbvf] Add i350 virtual function support
Browse files Browse the repository at this point in the history
Modified-by: Michael Brown <mcb30@ipxe.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
Erik Jacobson authored and mcb30 committed Apr 10, 2012
1 parent 0e4a5ca commit 96a8c70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/drivers/net/igbvf/igbvf_main.c
Expand Up @@ -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),
};


Expand Down
1 change: 1 addition & 0 deletions src/drivers/net/igbvf/igbvf_vf.h
Expand Up @@ -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 */

Expand Down

0 comments on commit 96a8c70

Please sign in to comment.