aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/e1000e/82571.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/e1000e/82571.c b/drivers/net/e1000e/82571.c
index 7cdf1768afac..0e8aa3441b97 100644
--- a/drivers/net/e1000e/82571.c
+++ b/drivers/net/e1000e/82571.c
@@ -1114,6 +1114,13 @@ static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw)
1114 reg |= (1 << 22); 1114 reg |= (1 << 22);
1115 ew32(GCR, reg); 1115 ew32(GCR, reg);
1116 1116
1117 /*
1118 * Workaround for hardware errata.
1119 * apply workaround for hardware errata documented in errata
1120 * docs Fixes issue where some error prone or unreliable PCIe
1121 * completions are occurring, particularly with ASPM enabled.
1122 * Without fix, issue can cause tx timeouts.
1123 */
1117 reg = er32(GCR2); 1124 reg = er32(GCR2);
1118 reg |= 1; 1125 reg |= 1;
1119 ew32(GCR2, reg); 1126 ew32(GCR2, reg);