imx: ventana: add appropriate delay following GSC i2c write

The Gateworks System Controller EEPROM config is flash based. Add a delay
following writes to avoid errors on back-to-back writes.

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
This commit is contained in:
Tim Harvey 2014-08-07 22:35:44 -07:00 committed by Stefano Babic
parent 2325bb1898
commit e5131d53bf

View File

@ -57,7 +57,7 @@ int gsc_i2c_write(uchar chip, uint addr, int alen, uchar *buf, int len)
break; break;
mdelay(10); mdelay(10);
} }
mdelay(1); mdelay(100);
return ret; return ret;
} }