summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchris <chris@openbsd.org>2014-09-08 02:39:57 +0000
committerchris <chris@openbsd.org>2014-09-08 02:39:57 +0000
commita705e312d45adf304bc12465fcf57d044b252faa (patch)
tree28734922287ab0d25063dc9204059d770ff32a38
parentActually remove the procfs files (diff)
downloadwireguard-openbsd-a705e312d45adf304bc12465fcf57d044b252faa.tar.xz
wireguard-openbsd-a705e312d45adf304bc12465fcf57d044b252faa.zip
Match 82599 as found on SuperMicro AOC-STGN-I1S
ok mikeb@
-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: