mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
tqma6_wru4: Fix the reset delay for the the LAN8720 PHY
According to the LAN8720 datasheet tpurstd (time that reset line should stay asserted) is 25ms. So do as suggested by the LAN8720 datasheet. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
This commit is contained in:
parent
529a671279
commit
755a116e8e
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ static void setup_iomuxc_enet(void)
|
|||
ret = gpio_request(ENET_PHY_RESET_GPIO, "phy-reset");
|
||||
if (!ret)
|
||||
gpio_direction_output(ENET_PHY_RESET_GPIO , 0);
|
||||
udelay(1000);
|
||||
udelay(25000);
|
||||
gpio_set_value(ENET_PHY_RESET_GPIO, 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue