summaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000e
diff options
context:
space:
mode:
authorBruce Allan2008-11-22 01:49:53 +0100
committerDavid S. Miller2008-11-22 01:49:53 +0100
commit5aa49c82118d2aa08c6cfaba01fd86f969b3f1d7 (patch)
treefdc653544e61142826796f24a9313d30d0bb9d61 /drivers/net/e1000e
parente1000e: disable correctable errors for quad ports while going to D3 (diff)
downloadkernel-qcow2-linux-5aa49c82118d2aa08c6cfaba01fd86f969b3f1d7.tar.gz
kernel-qcow2-linux-5aa49c82118d2aa08c6cfaba01fd86f969b3f1d7.tar.xz
kernel-qcow2-linux-5aa49c82118d2aa08c6cfaba01fd86f969b3f1d7.zip
e1000e: commit speed/duplex changes for m88 PHY
Follow the convention used elsewhere in e1000e to 'commit' PHY changes instead of directly writing to the PHY CTRL register to reset it. Signed-off-by: Bruce Allan <bruce.w.allan@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/e1000e')
-rw-r--r--drivers/net/e1000e/phy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/e1000e/phy.c b/drivers/net/e1000e/phy.c
index 6cd333ae61d0..cb7d71e458e4 100644
--- a/drivers/net/e1000e/phy.c
+++ b/drivers/net/e1000e/phy.c
@@ -1030,14 +1030,14 @@ s32 e1000e_phy_force_speed_duplex_m88(struct e1000_hw *hw)
e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
- /* Reset the phy to commit changes. */
- phy_data |= MII_CR_RESET;
-
ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
if (ret_val)
return ret_val;
- udelay(1);
+ /* Reset the phy to commit changes. */
+ ret_val = e1000e_commit_phy(hw);
+ if (ret_val)
+ return ret_val;
if (phy->autoneg_wait_to_complete) {
hw_dbg(hw, "Waiting for forced speed/duplex link on M88 phy.\n");