diff options
Diffstat (limited to 'drivers/net/e1000/e1000_hw.c')
-rw-r--r-- | drivers/net/e1000/e1000_hw.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/e1000/e1000_hw.c b/drivers/net/e1000/e1000_hw.c index 1ea556ef093b..ea7b371e9119 100644 --- a/drivers/net/e1000/e1000_hw.c +++ b/drivers/net/e1000/e1000_hw.c | |||
@@ -452,6 +452,12 @@ e1000_set_mac_type(struct e1000_hw *hw) | |||
452 | if (hw->mac_type >= e1000_82571) | 452 | if (hw->mac_type >= e1000_82571) |
453 | hw->has_manc2h = TRUE; | 453 | hw->has_manc2h = TRUE; |
454 | 454 | ||
455 | /* In rare occasions, ESB2 systems would end up started without | ||
456 | * the RX unit being turned on. | ||
457 | */ | ||
458 | if (hw->mac_type == e1000_80003es2lan) | ||
459 | hw->rx_needs_kicking = TRUE; | ||
460 | |||
455 | return E1000_SUCCESS; | 461 | return E1000_SUCCESS; |
456 | } | 462 | } |
457 | 463 | ||