drivers/iio/gyro/mpu3050-core.c: This patch fix the following checkpatch warning.
authorMohan Kumar <mohankumar718@gmail.com>
Sun, 14 Apr 2019 15:53:38 +0000 (18:53 +0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 22 Apr 2019 10:34:14 +0000 (11:34 +0100)
As per Documentation/timers/timers-howto.txt Msleep < 20ms can sleep for
up to 20ms. so use usleep_range.

Signed-off-by: Mohan Kumar <mohankumar718@gmail.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/gyro/mpu3050-core.c

index 8200e48..496ed4c 100644 (file)
@@ -864,7 +864,7 @@ static int mpu3050_power_up(struct mpu3050 *mpu3050)
                dev_err(mpu3050->dev, "error setting power mode\n");
                return ret;
        }
-       msleep(10);
+       usleep_range(10000, 20000);
 
        return 0;
 }