Message ID | 20231217232508.26470-1-ansuelsmth@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 3ab5720881a924fb6405d9e6a3b09f1026467c47 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] net: phy: at803x: replace msleep(1) with usleep_range | expand |
On Mon, Dec 18, 2023 at 12:25:08AM +0100, Christian Marangi wrote: > Replace msleep(1) with usleep_range as suggested by timers-howto guide. > > Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Andrew
Hello: This patch was applied to netdev/net-next.git (main) by Paolo Abeni <pabeni@redhat.com>: On Mon, 18 Dec 2023 00:25:08 +0100 you wrote: > Replace msleep(1) with usleep_range as suggested by timers-howto guide. > > Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> > --- > drivers/net/phy/at803x.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) Here is the summary with links: - [net-next] net: phy: at803x: replace msleep(1) with usleep_range https://git.kernel.org/netdev/net-next/c/3ab5720881a9 You are awesome, thank you!
diff --git a/drivers/net/phy/at803x.c b/drivers/net/phy/at803x.c index a7d28848ee93..2b2f0fadaf84 100644 --- a/drivers/net/phy/at803x.c +++ b/drivers/net/phy/at803x.c @@ -916,9 +916,9 @@ static void at803x_link_change_notify(struct phy_device *phydev) at803x_context_save(phydev, &context); phy_device_reset(phydev, 1); - msleep(1); + usleep_range(1000, 2000); phy_device_reset(phydev, 0); - msleep(1); + usleep_range(1000, 2000); at803x_context_restore(phydev, &context); @@ -1733,7 +1733,7 @@ static int qca83xx_resume(struct phy_device *phydev) if (ret) return ret; - msleep(1); + usleep_range(1000, 2000); return 0; }
Replace msleep(1) with usleep_range as suggested by timers-howto guide. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> --- drivers/net/phy/at803x.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)