iPXE
vxge.c
Go to the documentation of this file.
1 /** @file Stub file for vxge driver
2  *
3  * This file drags in the rest of the driver for Neterion Inc's X3100 Series
4  * 10GbE PCIe I/O Virtualized Server Adapter, allowing the driver to be built
5  * as "vxge" even though the code is in vxge_* named files.
6  */
7 
8 FILE_LICENCE(GPL2_OR_LATER_OR_UBDL);
9 
10 #include <ipxe/pci.h>
11 
13 REQUIRE_OBJECT(vxge_main);
14 
15 /** vxge PCI IDs for util/parserom.pl which are put into bin/NIC */
16 static struct pci_device_id vxge_nics[] __unused = {
17  /* If you change this, also adjust vxge_main_nics[] in vxge_main.c */
18  PCI_ROM(0x17d5, 0x5833, "vxge-x3100", "Neterion X3100 Series", 0),
19 };
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
REQUIRE_OBJECT(vxge_main)
PCI bus.
static struct pci_device_id vxge_nics [] __unused
vxge PCI IDs for util/parserom.pl which are put into bin/NIC
Definition: vxge.c:16
PROVIDE_REQUIRING_SYMBOL()
A PCI device ID list entry.
Definition: pci.h:170
#define PCI_ROM(_vendor, _device, _name, _description, _data)
Definition: pci.h:303