diff options
Diffstat (limited to 'drivers/net/e1000e/ich8lan.c')
-rw-r--r-- | drivers/net/e1000e/ich8lan.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/e1000e/ich8lan.c b/drivers/net/e1000e/ich8lan.c index 568bb259c6fd..7530fc5d81c3 100644 --- a/drivers/net/e1000e/ich8lan.c +++ b/drivers/net/e1000e/ich8lan.c | |||
@@ -1110,7 +1110,8 @@ static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state) | |||
1110 | oem_reg |= HV_OEM_BITS_LPLU; | 1110 | oem_reg |= HV_OEM_BITS_LPLU; |
1111 | } | 1111 | } |
1112 | /* Restart auto-neg to activate the bits */ | 1112 | /* Restart auto-neg to activate the bits */ |
1113 | oem_reg |= HV_OEM_BITS_RESTART_AN; | 1113 | if (!e1000_check_reset_block(hw)) |
1114 | oem_reg |= HV_OEM_BITS_RESTART_AN; | ||
1114 | ret_val = hw->phy.ops.write_reg_locked(hw, HV_OEM_BITS, oem_reg); | 1115 | ret_val = hw->phy.ops.write_reg_locked(hw, HV_OEM_BITS, oem_reg); |
1115 | 1116 | ||
1116 | out: | 1117 | out: |
@@ -3545,6 +3546,7 @@ struct e1000_info e1000_pch_info = { | |||
3545 | | FLAG_HAS_AMT | 3546 | | FLAG_HAS_AMT |
3546 | | FLAG_HAS_FLASH | 3547 | | FLAG_HAS_FLASH |
3547 | | FLAG_HAS_JUMBO_FRAMES | 3548 | | FLAG_HAS_JUMBO_FRAMES |
3549 | | FLAG_DISABLE_FC_PAUSE_TIME /* errata */ | ||
3548 | | FLAG_APME_IN_WUC, | 3550 | | FLAG_APME_IN_WUC, |
3549 | .pba = 26, | 3551 | .pba = 26, |
3550 | .max_hw_frame_size = 4096, | 3552 | .max_hw_frame_size = 4096, |