git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53c2e4a
)
e1000/base: increase timeout of reset check
author
Wenzhuo Lu
<wenzhuo.lu@intel.com>
Fri, 16 Oct 2015 02:51:14 +0000
(10:51 +0800)
committer
Thomas Monjalon
<thomas.monjalon@6wind.com>
Tue, 27 Oct 2015 15:12:57 +0000
(16:12 +0100)
Previously, in check_reset_block RSPCIPHY was polled for 100 ms before determining
that the ME veto is set. This needed to be increased to 300 ms.
Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
drivers/net/e1000/base/e1000_ich8lan.c
patch
|
blob
|
history
diff --git
a/drivers/net/e1000/base/e1000_ich8lan.c
b/drivers/net/e1000/base/e1000_ich8lan.c
index
7b7c631
..
70eba71
100644
(file)
--- a/
drivers/net/e1000/base/e1000_ich8lan.c
+++ b/
drivers/net/e1000/base/e1000_ich8lan.c
@@
-1991,7
+1991,7
@@
STATIC s32 e1000_check_reset_block_ich8lan(struct e1000_hw *hw)
continue;
}
blocked = false;
- } while (blocked && (i++ <
1
0));
+ } while (blocked && (i++ <
3
0));
return blocked ? E1000_BLK_PHY_RESET : E1000_SUCCESS;
}