summary refs log tree commit diff
path: root/drivers/video/mb862xx
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/mb862xx
parent43dcd13b9a807ea9e832e4c6b138d825a7b65577 (diff)
downloadlinux-363d58f5071df66cbe57c8a68e8bc84efe91f16e.tar.gz
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/mb862xx')
-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;