diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-08-26 15:54:14 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-10 03:07:12 +0200 |
commit | 49ebf14e249734a5f64d5bdd9aaa2ddf4bcedc51 (patch) | |
tree | 1739a0eca82a82d4ae776e19844ecef3055e2495 /drivers/media/video/ivtv/ivtv-i2c.c | |
parent | V4L/DVB (6112): cx25840: use a workqueue to load the firmware (diff) | |
download | linux-49ebf14e249734a5f64d5bdd9aaa2ddf4bcedc51.tar.xz linux-49ebf14e249734a5f64d5bdd9aaa2ddf4bcedc51.zip |
V4L/DVB (6113): ivtv: udelay for the i2c bus was set too high
An udelay of 5 is sufficient for standard speed i2c busses, 10 make it
too slow.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/ivtv/ivtv-i2c.c')
-rw-r--r-- | drivers/media/video/ivtv/ivtv-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-i2c.c b/drivers/media/video/ivtv/ivtv-i2c.c index 085dc3938da7..285fca676a69 100644 --- a/drivers/media/video/ivtv/ivtv-i2c.c +++ b/drivers/media/video/ivtv/ivtv-i2c.c @@ -541,7 +541,7 @@ static const struct i2c_algo_bit_data ivtv_i2c_algo_template = { .setscl = ivtv_setscl_old, .getsda = ivtv_getsda_old, .getscl = ivtv_getscl_old, - .udelay = 10, + .udelay = 5, .timeout = 200, }; |