You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vxge.c 603B

123456789101112131415161718
  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. FILE_LICENCE(GPL2_OR_LATER);
  8. #include <ipxe/pci.h>
  9. REQUIRE_OBJECT(vxge_main);
  10. /** vxge PCI IDs for util/parserom.pl which are put into bin/NIC */
  11. static struct pci_device_id vxge_nics[] __unused = {
  12. /* If you change this, also adjust vxge_main_nics[] in vxge_main.c */
  13. PCI_ROM(0x17d5, 0x5833, "vxge-x3100", "Neterion X3100 Series", 0),
  14. };