aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorAnatolij Gustschin <agust@denx.de>2011-09-01 17:53:41 +0200
committerFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>2011-09-02 17:57:38 +0000
commit363d58f5071df66cbe57c8a68e8bc84efe91f16e (patch)
tree91779cc8a7b306530a3e567814581ad037b97976 /drivers/video
parentfbdev: fix parsing of standard timings (diff)
downloadlinux-dev-363d58f5071df66cbe57c8a68e8bc84efe91f16e.tar.xz
linux-dev-363d58f5071df66cbe57c8a68e8bc84efe91f16e.zip
video: mb862xx-i2c: fix for reliable decoder register access
Increase delay when polling for tx status. This fixes the unreliable video decoder i2c register access. Signed-off-by: Anatolij Gustschin <agust@denx.de> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/mb862xx/mb862xx-i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/mb862xx/mb862xx-i2c.c b/drivers/video/mb862xx/mb862xx-i2c.c
index b953099edd8e..934081d2b7ae 100644
--- a/drivers/video/mb862xx/mb862xx-i2c.c
+++ b/drivers/video/mb862xx/mb862xx-i2c.c
@@ -23,7 +23,7 @@ static int mb862xx_i2c_wait_event(struct i2c_adapter *adap)
u32 reg;
do {
- udelay(1);
+ udelay(10);
reg = inreg(i2c, GC_I2C_BCR);
if (reg & (I2C_INT | I2C_BER))
break;