mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 02:51:44 +00:00
sungem: use mdelay instead of udelay where necessary
Some architectures like ARM cannot handle large numbers as arguments to udelay, so the drivers should use mdelay when delaying for multiple miliseconds. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
32fd32a59c
commit
3a22d5d5eb
@ -401,7 +401,7 @@ static int gem_rxmac_reset(struct gem *gp)
|
||||
return 1;
|
||||
}
|
||||
|
||||
udelay(5000);
|
||||
mdelay(5);
|
||||
|
||||
/* Execute RX reset command. */
|
||||
writel(gp->swrst_base | GREG_SWRST_RXRST,
|
||||
|
Loading…
Reference in New Issue
Block a user