mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 10:04:12 +08:00
net: phy: at803x: replace msleep(1) with usleep_range
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> Link: https://lore.kernel.org/r/20231217232508.26470-1-ansuelsmth@gmail.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
parent
fc9d7264dd
commit
3ab5720881
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user