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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue