diff options
author | David S. Miller <davem@davemloft.net> | 2009-11-29 03:57:15 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-29 03:57:15 -0500 |
commit | 9b963e5d0e01461099a40117b05480f24b63381f (patch) | |
tree | 4756d554e37bf4ab7202f2c564cbe629af98b576 /drivers/net/e1000e/ich8lan.c | |
parent | 3b8626ba01a8a745a3fdf22dd347edd708b0af13 (diff) | |
parent | 5fdd4baef6195a1f2960e901c8877e2105f832ca (diff) |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts:
drivers/ieee802154/fakehard.c
drivers/net/e1000e/ich8lan.c
drivers/net/e1000e/phy.c
drivers/net/netxen/netxen_nic_init.c
drivers/net/wireless/ath/ath9k/main.c
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, |