diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-08-11 06:53:32 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-08-11 06:53:32 +0000 |
commit | a71c2e2f1c7f41b7928d9759085669fd2f4ee761 (patch) | |
tree | cf062408d2096c1786e01e13b1ea40458b89aabf /sys/dev/pci/if_ix.c | |
parent | d0f2e500f75792ebacef5b90ae9194438bfcef43 (diff) |
Add support for another 82599 SFP+ card. Original diff and tests by
Chris Maxwell <chris ! maxwell () hootsuite.com>
ok jsg
Diffstat (limited to 'sys/dev/pci/if_ix.c')
-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 8f178043e47..9592781b206 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.69 2012/08/10 10:56:22 mikeb Exp $ */ +/* $OpenBSD: if_ix.c,v 1.70 2012/08/11 06:53:31 mikeb Exp $ */ /****************************************************************************** @@ -72,6 +72,7 @@ const struct pci_matchid ixgbe_devices[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599_T3_LOM }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599_SFP }, { 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_X540T }, #if 0 @@ -1414,6 +1415,7 @@ ixgbe_identify_hardware(struct ix_softc *sc) case PCI_PRODUCT_INTEL_82599_SFP: case PCI_PRODUCT_INTEL_82599_SFP_EM: case PCI_PRODUCT_INTEL_82599_SFP_FCOE: + case PCI_PRODUCT_INTEL_82599_SFP_SF2: sc->hw.mac.type = ixgbe_mac_82599EB; sc->optics = IFM_10G_SR; sc->hw.phy.smart_speed = ixgbe_smart_speed; |