projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa14027
)
net: mvpp2: increase PHY reset pulse
author
Baruch Siach
<
[email protected]
>
Mon, 15 Oct 2018 10:16:48 +0000
(13:16 +0300)
committer
Joe Hershberger
<
[email protected]
>
Wed, 24 Oct 2018 19:45:38 +0000
(14:45 -0500)
The default Linux PHY reset delay is 10ms. This is also the requirement
for Marvell 88E151x PHYs, which are likely to be used with this Ethernet
MAC.
Cc: Stefan Chulski <
[email protected]
>
Signed-off-by: Baruch Siach <
[email protected]
>
Acked-by: Joe Hershberger <
[email protected]
>
Reviewed-by: Stefan Roese <
[email protected]
>
drivers/net/mvpp2.c
patch
|
blob
|
history
diff --git
a/drivers/net/mvpp2.c
b/drivers/net/mvpp2.c
index 48728d168a718c449fa929d43e4a758f1bc73201..9b3ab25c19540dade81b3e48c45c96d2c3cbaa12 100644
(file)
--- a/
drivers/net/mvpp2.c
+++ b/
drivers/net/mvpp2.c
@@
-4793,7
+4793,7
@@
static void mvpp2_gpio_init(struct mvpp2_port *port)
{
if (dm_gpio_is_valid(&port->phy_reset_gpio)) {
dm_gpio_set_value(&port->phy_reset_gpio, 1);
-
udelay(100
0);
+
mdelay(1
0);
dm_gpio_set_value(&port->phy_reset_gpio, 0);
}