Commit 8c4accad authored by Gerd Knorr's avatar Gerd Knorr Committed by Linus Torvalds

[PATCH] v4l: msp3400 cleanup

This is a minor cleanup for the msp3400.c module: use the new msleep()
function for delays.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 57bd64b6
......@@ -191,8 +191,7 @@ msp3400c_read(struct i2c_client *client, int dev, int addr)
err++;
printk(KERN_WARNING "msp34xx: I/O error #%d (read 0x%02x/0x%02x)\n",
err, dev, addr);
set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout(HZ/10);
msleep(10);
}
if (3 == err) {
printk(KERN_WARNING "msp34xx: giving up, reseting chip. Sound will go off, sorry folks :-|\n");
......@@ -220,8 +219,7 @@ msp3400c_write(struct i2c_client *client, int dev, int addr, int val)
err++;
printk(KERN_WARNING "msp34xx: I/O error #%d (write 0x%02x/0x%02x)\n",
err, dev, addr);
set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout(HZ/10);
msleep(10);
}
if (3 == err) {
printk(KERN_WARNING "msp34xx: giving up, reseting chip. Sound will go off, sorry folks :-|\n");
......
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