diff options
author | Greg Rose <gregory.v.rose@intel.com> | 2010-12-07 08:16:45 +0000 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2010-12-24 21:40:32 -0800 |
commit | 3377eba79e15671799876f82d30446e656aac5ad (patch) | |
tree | 4db223fec09b929871cc4ae0278d718e300c9ce9 /drivers/net/ixgbe/ixgbe_main.c | |
parent | d3306c2974481ff9c539de22a37bb667e8694be2 (diff) | |
download | linux-3377eba79e15671799876f82d30446e656aac5ad.tar.gz linux-3377eba79e15671799876f82d30446e656aac5ad.tar.bz2 linux-3377eba79e15671799876f82d30446e656aac5ad.zip |
ixgbe: Add SR-IOV feature support to X540
Add X540 specific feature support to X540
Signed-off-by: Greg Rose <gregory.v.rose@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_main.c')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index ca9036de49f9..c90562530202 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c @@ -6889,7 +6889,7 @@ static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter, struct ixgbe_hw *hw = &adapter->hw; int err; - if (hw->mac.type != ixgbe_mac_82599EB || !max_vfs) + if (hw->mac.type == ixgbe_mac_82598EB || !max_vfs) return; /* The 82599 supports up to 64 VFs per physical function |