提交 ec5c91c6 编写于 作者: E Egil Hjelmeland 提交者: David S. Miller

net: dsa: lan9303: Replace msleep(1) with usleep_range()

Remove scripts/checkpatch.pl WARNING by replacing msleep(1) with usleep_range()
Signed-off-by: NEgil Hjelmeland <privat@egil-hjelmeland.no>
Reviewed-by: NVivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 68d50fa4
...@@ -284,7 +284,7 @@ static int lan9303_indirect_phy_wait_for_completion(struct lan9303 *chip) ...@@ -284,7 +284,7 @@ static int lan9303_indirect_phy_wait_for_completion(struct lan9303 *chip)
} }
if (!(reg & LAN9303_PMI_ACCESS_MII_BUSY)) if (!(reg & LAN9303_PMI_ACCESS_MII_BUSY))
return 0; return 0;
msleep(1); usleep_range(1000, 2000);
} }
return -EIO; return -EIO;
...@@ -376,7 +376,7 @@ static int lan9303_switch_wait_for_completion(struct lan9303 *chip) ...@@ -376,7 +376,7 @@ static int lan9303_switch_wait_for_completion(struct lan9303 *chip)
} }
if (!(reg & LAN9303_SWITCH_CSR_CMD_BUSY)) if (!(reg & LAN9303_SWITCH_CSR_CMD_BUSY))
return 0; return 0;
msleep(1); usleep_range(1000, 2000);
} }
return -EIO; return -EIO;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册