[net-next] net: phy: at803x: replace msleep(1) with usleep_range

Message ID 20231217232508.26470-1-ansuelsmth@gmail.com
State New
Headers
Series [net-next] net: phy: at803x: replace msleep(1) with usleep_range |

Commit Message

Christian Marangi Dec. 17, 2023, 11:25 p.m. UTC
  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(-)
  

Comments

Andrew Lunn Dec. 18, 2023, 9:46 a.m. UTC | #1
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
  
patchwork-bot+netdevbpf@kernel.org Dec. 21, 2023, 3 p.m. UTC | #2
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!
  

Patch

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;
 }