summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorChris Cappuccio <chris@cvs.openbsd.org>2014-09-08 02:39:58 +0000
committerChris Cappuccio <chris@cvs.openbsd.org>2014-09-08 02:39:58 +0000
commit369db2866efbb4ae9f1eba9df1dadedcc386d4a5 (patch)
treea033a8735a22a67657ee93f65dc9496c30bf2efe /sys/dev
parent9279e2c961d9a4c29af849c66feb8087e377c1b7 (diff)
Match 82599 as found on SuperMicro AOC-STGN-I1S
ok mikeb@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_ix.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_ix.c b/sys/dev/pci/if_ix.c
index 855e82aa75f..fcc34db09e3 100644
--- a/sys/dev/pci/if_ix.c
+++ b/sys/dev/pci/if_ix.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ix.c,v 1.99 2014/08/26 11:01:22 mikeb Exp $ */
+/* $OpenBSD: if_ix.c,v 1.100 2014/09/08 02:39:57 chris Exp $ */
/******************************************************************************
@@ -73,6 +73,7 @@ const struct pci_matchid ixgbe_devices[] = {
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599_SFP_EM },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599_SFP_SF2 },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599_SFP_FCOE },
+ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599EN_SFP },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X540T },
};
@@ -1380,6 +1381,7 @@ ixgbe_identify_hardware(struct ix_softc *sc)
case PCI_PRODUCT_INTEL_82598_BX:
sc->hw.mac.type = ixgbe_mac_82598EB;
break;
+ case PCI_PRODUCT_INTEL_82599EN_SFP:
case PCI_PRODUCT_INTEL_82599_SFP:
case PCI_PRODUCT_INTEL_82599_SFP_EM:
case PCI_PRODUCT_INTEL_82599_SFP_FCOE: