Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

forcedeth: use usleep_range not msleep for small sleeps

parent 34cf97eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1178,7 +1178,7 @@ static int phy_reset(struct net_device *dev, u32 bmcr_setup)

	/* must wait till reset is deasserted */
	while (miicontrol & BMCR_RESET) {
		msleep(10);
		usleep_range(10000, 20000);
		miicontrol = mii_rw(dev, np->phyaddr, MII_BMCR, MII_READ);
		/* FIXME: 100 tries seem excessive */
		if (tries++ > 100)