diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-09-12 13:52:21 +0200 |
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-09-12 13:52:21 +0200 |
| commit | 7238ada313057a85409485b8ee21515dc10c07a5 (patch) | |
| tree | 51aad867321b9a76d66562343eb19eafbef55123 | |
| parent | 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836 (diff) | |
| download | olio-uboot-2014.01-7238ada313057a85409485b8ee21515dc10c07a5.tar.xz olio-uboot-2014.01-7238ada313057a85409485b8ee21515dc10c07a5.zip | |
MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
Signed-off-by: Wolfgang Denk <wd@denx.de>
| -rw-r--r-- | drivers/net/mpc512x_fec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/mpc512x_fec.c b/drivers/net/mpc512x_fec.c index 54283fb9d..7078c4ef7 100644 --- a/drivers/net/mpc512x_fec.c +++ b/drivers/net/mpc512x_fec.c @@ -364,7 +364,7 @@ int mpc512x_fec_init_phy (struct eth_device *dev, bd_t * bis) /* * Wait for AN completion */ - timeout = 50000; + timeout = 2500; do { udelay (1000); |