00001 /** @file Stub file for vxge driver 00002 * 00003 * This file drags in the rest of the driver for Neterion Inc's X3100 Series 00004 * 10GbE PCIe I/O Virtualized Server Adapter, allowing the driver to be built 00005 * as "vxge" even though the code is in vxge_* named files. 00006 */ 00007 00008 FILE_LICENCE(GPL2_OR_LATER); 00009 00010 #include <gpxe/pci.h> 00011 00012 REQUIRE_OBJECT(vxge_main); 00013 00014 /** vxge PCI IDs for util/parserom.pl which are put into bin/NIC */ 00015 static struct pci_device_id vxge_nics[] __unused = { 00016 /* If you change this, also adjust vxge_main_nics[] in vxge_main.c */ 00017 PCI_ROM(0x17d5, 0x5833, "vxge-x3100", "Neterion X3100 Series", 0), 00018 };
1.5.7.1