Skip to content
Snippets Groups Projects
Commit e5131d53 authored by Tim Harvey's avatar Tim Harvey Committed by Stefano Babic
Browse files

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: default avatarTim Harvey <tharvey@gateworks.com>
parent 2325bb18
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ int gsc_i2c_write(uchar chip, uint addr, int alen, uchar *buf, int len) ...@@ -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;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment