Skip to content

Instantly share code, notes, and snippets.

@hiroyuki-sato
Created February 23, 2013 15:32
Show Gist options
  • Save hiroyuki-sato/5020151 to your computer and use it in GitHub Desktop.
Save hiroyuki-sato/5020151 to your computer and use it in GitHub Desktop.
FreeBSD 10GbE driver
static ixgb_vendor_info_t ixgb_vendor_info_array[] =
{
/* Intel(R) PRO/10000 Network Connection */
{INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX, PCI_ANY_ID, PCI_ANY_ID, 0},
{INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_SR, PCI_ANY_ID, PCI_ANY_ID, 0},
{INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_LR, PCI_ANY_ID, PCI_ANY_ID, 0},
/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
/* required last entry */
{0, 0, 0, 0, 0}
};
/* ixgb_ids.h */
#define IXGB_DEVICE_ID_82597EX_LR 0x1b48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment