Commit 0aaf8967 authored by Nishanth Aravamudan's avatar Nishanth Aravamudan Committed by Greg Kroah-Hartman

[PATCH] USB: ov511: replace schedule_timeout() with msleep()

Use msleep() instead of schedule_timeout() to
guarantee the task delays for the desired time.
Signed-off-by: default avatarNishanth Aravamudan <nacc@us.ibm.com>
Signed-off-by: default avatarMark McClelland <mark@alpha.dyndns.org>
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 91e1660a
...@@ -1169,7 +1169,7 @@ init_ov_sensor(struct usb_ov511 *ov) ...@@ -1169,7 +1169,7 @@ init_ov_sensor(struct usb_ov511 *ov)
return -EIO; return -EIO;
/* Wait for it to initialize */ /* Wait for it to initialize */
schedule_timeout(1 + 150 * HZ / 1000); msleep(150);
for (i = 0, success = 0; i < i2c_detect_tries && !success; i++) { for (i = 0, success = 0; i < i2c_detect_tries && !success; i++) {
if ((i2c_r(ov, OV7610_REG_ID_HIGH) == 0x7F) && if ((i2c_r(ov, OV7610_REG_ID_HIGH) == 0x7F) &&
...@@ -1182,7 +1182,7 @@ init_ov_sensor(struct usb_ov511 *ov) ...@@ -1182,7 +1182,7 @@ init_ov_sensor(struct usb_ov511 *ov)
if (i2c_w(ov, 0x12, 0x80) < 0) if (i2c_w(ov, 0x12, 0x80) < 0)
return -EIO; return -EIO;
/* Wait for it to initialize */ /* Wait for it to initialize */
schedule_timeout(1 + 150 * HZ / 1000); msleep(150);
/* Dummy read to sync I2C */ /* Dummy read to sync I2C */
if (i2c_r(ov, 0x00) < 0) if (i2c_r(ov, 0x00) < 0)
return -EIO; return -EIO;
...@@ -4947,7 +4947,7 @@ ov7xx0_configure(struct usb_ov511 *ov) ...@@ -4947,7 +4947,7 @@ ov7xx0_configure(struct usb_ov511 *ov)
return -1; return -1;
/* Wait for it to initialize */ /* Wait for it to initialize */
schedule_timeout(1 + 150 * HZ / 1000); msleep(150);
i = 0; i = 0;
success = 0; success = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment