aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/88pm805.c
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2014-05-08 12:06:19 +0100
committerLee Jones <lee.jones@linaro.org>2014-07-09 16:38:02 +0100
commitdc543929217c828fa52bcf48be0508eb5a552bec (patch)
tree84e71791c17da4eb053f5304caa1cd12fa26e6d7 /drivers/mfd/88pm805.c
parentmfd: tps65910: Rid data size incompatibility warn when building for 64bit (diff)
downloadlinux-dev-dc543929217c828fa52bcf48be0508eb5a552bec.tar.xz
linux-dev-dc543929217c828fa52bcf48be0508eb5a552bec.zip
mfd: 88pm805: msleep(1ms ~ 20ms) may not do what the caller intends
This code has been working since 2012, as limiting the time between 1ms and 3ms is unlikely to do any harm. Soothes checkpatch warning: WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt #161: FILE: drivers/mfd/88pm805.c:161: + msleep(1); Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/88pm805.c')
-rw-r--r--drivers/mfd/88pm805.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/88pm805.c b/drivers/mfd/88pm805.c
index 64751c2a1ace..e9d50644660c 100644
--- a/drivers/mfd/88pm805.c
+++ b/drivers/mfd/88pm805.c
@@ -158,7 +158,7 @@ static int device_irq_init_805(struct pm80x_chip *chip)
* PM805_INT_STATUS is under 32K clock domain, so need to
* add proper delay before the next I2C register access.
*/
- msleep(1);
+ usleep_range(1000, 3000);
if (ret < 0)
goto out;