Просмотр исходного кода

media: tw9910: Replace msleep(1) with usleep_range

msleep() can sleep up to 20ms.

As suggested by Documentation/timers/timers_howto.txt replace it with
usleep_range() with up to 5ms delay.

Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Jacopo Mondi 7 лет назад
Родитель
Сommit
7bd8c4f2e8
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      drivers/media/i2c/tw9910.c

+ 1 - 1
drivers/media/i2c/tw9910.c

@@ -401,7 +401,7 @@ static int tw9910_set_hsync(struct i2c_client *client)
 static void tw9910_reset(struct i2c_client *client)
 static void tw9910_reset(struct i2c_client *client)
 {
 {
 	tw9910_mask_set(client, ACNTL1, SRESET, SRESET);
 	tw9910_mask_set(client, ACNTL1, SRESET, SRESET);
-	msleep(1);
+	usleep_range(1000, 5000);
 }
 }
 
 
 static int tw9910_power(struct i2c_client *client, int enable)
 static int tw9910_power(struct i2c_client *client, int enable)