diff options
author | Tim Harvey <tharvey@gateworks.com> | 2017-03-17 07:31:02 -0700 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2017-03-20 19:10:39 +0100 |
commit | 94a1d6c6027a25ce02b2fc36fa3aef4c56947c9f (patch) | |
tree | f9056e4e6fe1f8dafbdca064a1ae9cf13b4671bf /board/gateworks/gw_ventana/eeprom.c | |
parent | 8d1a6ff825a42d28fc4031d4f111b05b6898d7e8 (diff) | |
download | u-boot-94a1d6c6027a25ce02b2fc36fa3aef4c56947c9f.tar.gz |
imx: ventana: add GW560x support
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'board/gateworks/gw_ventana/eeprom.c')
-rw-r--r-- | board/gateworks/gw_ventana/eeprom.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/gateworks/gw_ventana/eeprom.c b/board/gateworks/gw_ventana/eeprom.c index 9a1033ae10..cfd96b975a 100644 --- a/board/gateworks/gw_ventana/eeprom.c +++ b/board/gateworks/gw_ventana/eeprom.c @@ -93,6 +93,10 @@ read_eeprom(int bus, struct ventana_board_info *info) break; } break; + case '6': + if (info->model[4] == '0') + type = GW560x; + break; case '9': if (info->model[4] == '0' && info->model[5] == '4') type = GW5904; |