diff options
author | Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> | 2009-02-06 02:54:21 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-06 02:54:21 -0500 |
commit | 3201d3130ee3eb49ed0e905654568f02736afdcb (patch) | |
tree | f07287c17728f225881dfc0b111b219a0d3197aa /drivers/net/ixgbe/ixgbe_common.c | |
parent | bc97114d3f998a040876695a9b2b5be0b1a5320b (diff) |
ixgbe: Update link setup code to better support autonegotiation of speed
The current code has some flaws in it when performing autonegotiation,
especially on KX/KX4 links. This patch updates the code to better handle
the autonegotiation states on link setup. The patch also removes a redundant
link configuration call on driver load, and moves link configuration to
the ->open() path.
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_common.c')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_common.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/ixgbe/ixgbe_common.c b/drivers/net/ixgbe/ixgbe_common.c index 05f0e872947f..13ad5ba66b63 100644 --- a/drivers/net/ixgbe/ixgbe_common.c +++ b/drivers/net/ixgbe/ixgbe_common.c | |||
@@ -80,9 +80,6 @@ s32 ixgbe_start_hw_generic(struct ixgbe_hw *hw) | |||
80 | /* Clear the VLAN filter table */ | 80 | /* Clear the VLAN filter table */ |
81 | hw->mac.ops.clear_vfta(hw); | 81 | hw->mac.ops.clear_vfta(hw); |
82 | 82 | ||
83 | /* Set up link */ | ||
84 | hw->mac.ops.setup_link(hw); | ||
85 | |||
86 | /* Clear statistics registers */ | 83 | /* Clear statistics registers */ |
87 | hw->mac.ops.clear_hw_cntrs(hw); | 84 | hw->mac.ops.clear_hw_cntrs(hw); |
88 | 85 | ||