aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000e
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/e1000e')
-rw-r--r--drivers/net/e1000e/ich8lan.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/drivers/net/e1000e/ich8lan.c b/drivers/net/e1000e/ich8lan.c
index c7292a1a81ef..6b5e108bb51f 100644
--- a/drivers/net/e1000e/ich8lan.c
+++ b/drivers/net/e1000e/ich8lan.c
@@ -3457,21 +3457,12 @@ void e1000e_disable_gig_wol_ich8lan(struct e1000_hw *hw)
3457{ 3457{
3458 u32 phy_ctrl; 3458 u32 phy_ctrl;
3459 3459
3460 switch (hw->mac.type) { 3460 phy_ctrl = er32(PHY_CTRL);
3461 case e1000_ich8lan: 3461 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU | E1000_PHY_CTRL_GBE_DISABLE;
3462 case e1000_ich9lan: 3462 ew32(PHY_CTRL, phy_ctrl);
3463 case e1000_ich10lan:
3464 case e1000_pchlan:
3465 phy_ctrl = er32(PHY_CTRL);
3466 phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU |
3467 E1000_PHY_CTRL_GBE_DISABLE;
3468 ew32(PHY_CTRL, phy_ctrl);
3469 3463
3470 if (hw->mac.type == e1000_pchlan) 3464 if (hw->mac.type >= e1000_pchlan)
3471 e1000_phy_hw_reset_ich8lan(hw); 3465 e1000_phy_hw_reset_ich8lan(hw);
3472 default:
3473 break;
3474 }
3475} 3466}
3476 3467
3477/** 3468/**