diff options
author | Tim Harvey | 2021-04-16 15:05:59 -0700 |
---|---|---|
committer | Stefano Babic | 2021-05-02 12:46:54 +0200 |
commit | 1afa31a41eed4ae048d595a35b8e8779fed38fac (patch) | |
tree | 479360f1673387b67cbd594df7738f48515a9d40 /board | |
parent | 7e0daa924ad3604c36aef2e46ad7693d551357a3 (diff) |
imx: ventana: add delay before reading EEPROM
fixes: d863d054397a ("imx: ventana: convert U-Boot to OF_CONTROL using FIT image")
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/gateworks/gw_ventana/eeprom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/gateworks/gw_ventana/eeprom.c b/board/gateworks/gw_ventana/eeprom.c index a5a151d85b4..b9862c7dfcf 100644 --- a/board/gateworks/gw_ventana/eeprom.c +++ b/board/gateworks/gw_ventana/eeprom.c @@ -42,6 +42,7 @@ read_eeprom(int bus, struct ventana_board_info *info) } /* read eeprom config section */ + mdelay(10); if (gsc_i2c_read(GSC_EEPROM_ADDR, 0x00, 1, buf, sizeof(*info))) { puts("EEPROM: Failed to read EEPROM\n"); return GW_UNKNOWN; |