From: Shaveta Leekha Date: Mon, 3 Nov 2014 05:13:14 +0000 (+0530) Subject: drivers/i2c/fsl_i2c: Change CONFIG_I2C_TIMEOUT to 100ms X-Git-Tag: v2015.01-rc1~1^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6dd38cc35245db624443ee596eb78853fa9cca7a;p=u-boot drivers/i2c/fsl_i2c: Change CONFIG_I2C_TIMEOUT to 100ms Some slow I2C devices like Power Monitor(ZM7304) at times do not work well with low timeout value, so I2C bus get stuck during read cycle with this device, changing it to 100ms from 10ms works fine A lot of other i2c drivers like mxc and i2c drivers of BOOTROM also use relax timeouts to give sufficient ticks to work well with slower devices Signed-off-by: Shaveta Leekha Signed-off-by: Poonam Aggrwal --- diff --git a/drivers/i2c/fsl_i2c.c b/drivers/i2c/fsl_i2c.c index 811033b0b8..7bb1702bba 100644 --- a/drivers/i2c/fsl_i2c.c +++ b/drivers/i2c/fsl_i2c.c @@ -38,7 +38,7 @@ * generic value. */ #ifndef CONFIG_I2C_TIMEOUT -#define CONFIG_I2C_TIMEOUT 10000 +#define CONFIG_I2C_TIMEOUT 100000 #endif #define I2C_READ_BIT 1