projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68d50fa
)
net: dsa: lan9303: Replace msleep(1) with usleep_range()
author
Egil Hjelmeland
<
[email protected]
>
Mon, 6 Nov 2017 11:42:03 +0000
(12:42 +0100)
committer
David S. Miller
<
[email protected]
>
Wed, 8 Nov 2017 04:29:06 +0000
(13:29 +0900)
Remove scripts/checkpatch.pl WARNING by replacing msleep(1) with usleep_range()
Signed-off-by: Egil Hjelmeland <
[email protected]
>
Reviewed-by: Vivien Didelot <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/dsa/lan9303-core.c
patch
|
blob
|
history
diff --git
a/drivers/net/dsa/lan9303-core.c
b/drivers/net/dsa/lan9303-core.c
index c4afc8f1a66dfdc1b76bf53a6dfeb5950703ec1c..70ecd18a5e7dd3a40be0e050ecfa5f19c05c6fda 100644
(file)
--- a/
drivers/net/dsa/lan9303-core.c
+++ b/
drivers/net/dsa/lan9303-core.c
@@
-284,7
+284,7
@@
static int lan9303_indirect_phy_wait_for_completion(struct lan9303 *chip)
}
if (!(reg & LAN9303_PMI_ACCESS_MII_BUSY))
return 0;
-
msleep(1
);
+
usleep_range(1000, 2000
);
}
return -EIO;
@@
-376,7
+376,7
@@
static int lan9303_switch_wait_for_completion(struct lan9303 *chip)
}
if (!(reg & LAN9303_SWITCH_CSR_CMD_BUSY))
return 0;
-
msleep(1
);
+
usleep_range(1000, 2000
);
}
return -EIO;