diff options
author | 2014-09-08 02:39:57 +0000 | |
---|---|---|
committer | 2014-09-08 02:39:57 +0000 | |
commit | a705e312d45adf304bc12465fcf57d044b252faa (patch) | |
tree | 28734922287ab0d25063dc9204059d770ff32a38 | |
parent | Actually remove the procfs files (diff) | |
download | wireguard-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.c | 4 |
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: |