diff options
author | Emil Tantilov <emil.s.tantilov@intel.com> | 2011-07-28 06:17:04 +0000 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-08-04 05:06:13 -0700 |
commit | b57e35bd0e545181c94405ce35b89000aed56cc5 (patch) | |
tree | d0a0805ff5d0ff971dc7e56b9d4fd85386b41424 | |
parent | 2a72c31ee4aa31b6a762390e4811a0edf5eefcef (diff) | |
download | linux-3.10-b57e35bd0e545181c94405ce35b89000aed56cc5.tar.gz linux-3.10-b57e35bd0e545181c94405ce35b89000aed56cc5.tar.bz2 linux-3.10-b57e35bd0e545181c94405ce35b89000aed56cc5.zip |
ixgbe: fix PHY link setup for 82599
Fix pointer to setup_link for 82599.
This resolves some link issues when advertising modes unsupported
by the link partner.
Signed-off-by: Emil Tantilov <emil.s.tantilov@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
-rw-r--r-- | drivers/net/ixgbe/ixgbe_82599.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ixgbe/ixgbe_82599.c b/drivers/net/ixgbe/ixgbe_82599.c index 3b3dd4df4c5..34f30ec79c2 100644 --- a/drivers/net/ixgbe/ixgbe_82599.c +++ b/drivers/net/ixgbe/ixgbe_82599.c @@ -213,6 +213,7 @@ static s32 ixgbe_init_phy_ops_82599(struct ixgbe_hw *hw) switch (hw->phy.type) { case ixgbe_phy_tn: phy->ops.check_link = &ixgbe_check_phy_link_tnx; + phy->ops.setup_link = &ixgbe_setup_phy_link_tnx; phy->ops.get_firmware_version = &ixgbe_get_phy_firmware_version_tnx; break; |