Commit de855b99 authored by Szymon Janc's avatar Szymon Janc Committed by David S. Miller

forcedeth: use usleep_range not msleep for small sleeps

Signed-off-by: default avatarSzymon Janc <szymon@janc.net.pl>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 34cf97eb
...@@ -1178,7 +1178,7 @@ static int phy_reset(struct net_device *dev, u32 bmcr_setup) ...@@ -1178,7 +1178,7 @@ static int phy_reset(struct net_device *dev, u32 bmcr_setup)
/* must wait till reset is deasserted */ /* must wait till reset is deasserted */
while (miicontrol & BMCR_RESET) { while (miicontrol & BMCR_RESET) {
msleep(10); usleep_range(10000, 20000);
miicontrol = mii_rw(dev, np->phyaddr, MII_BMCR, MII_READ); miicontrol = mii_rw(dev, np->phyaddr, MII_BMCR, MII_READ);
/* FIXME: 100 tries seem excessive */ /* FIXME: 100 tries seem excessive */
if (tries++ > 100) if (tries++ > 100)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment