diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2006-01-12 19:50:46 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2006-01-17 07:44:49 -0500 |
commit | 526f99572e9f18f42c8da2c9adafbe64482c0737 (patch) | |
tree | b6b76704aa4ca03d3b66eaedb34b3d77237dc7a0 | |
parent | 492731632cce0a7c8817376e1316f0af093830c4 (diff) |
[PATCH] e1000: Fix PHY reset when blocked
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: John Ronciak <john.ronciak@intel.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
-rw-r--r-- | drivers/net/e1000/e1000_hw.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/e1000/e1000_hw.c b/drivers/net/e1000/e1000_hw.c index 45fa386d212e..bb9d00e0dc14 100644 --- a/drivers/net/e1000/e1000_hw.c +++ b/drivers/net/e1000/e1000_hw.c | |||
@@ -838,6 +838,11 @@ e1000_setup_link(struct e1000_hw *hw) | |||
838 | 838 | ||
839 | DEBUGFUNC("e1000_setup_link"); | 839 | DEBUGFUNC("e1000_setup_link"); |
840 | 840 | ||
841 | /* In the case of the phy reset being blocked, we already have a link. | ||
842 | * We do not have to set it up again. */ | ||
843 | if (e1000_check_phy_reset_block(hw)) | ||
844 | return E1000_SUCCESS; | ||
845 | |||
841 | /* Read and store word 0x0F of the EEPROM. This word contains bits | 846 | /* Read and store word 0x0F of the EEPROM. This word contains bits |
842 | * that determine the hardware's default PAUSE (flow control) mode, | 847 | * that determine the hardware's default PAUSE (flow control) mode, |
843 | * a bit that determines whether the HW defaults to enabling or | 848 | * a bit that determines whether the HW defaults to enabling or |