From: Tim Harvey Date: Fri, 23 May 2025 17:20:11 +0000 (-0700) Subject: board: venice: use baseboard model for family X-Git-Tag: v2025.10-rc1~118^2~21^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ea04f7261ef84eb1b5cecb60e5e45c75c760626c;p=thirdparty%2Fu-boot.git board: venice: use baseboard model for family The venice family of baseboards which is normally GW7xxx is being expanded to GW8xxx so we need to use the baseboard number instead of the som. Signed-off-by: Tim Harvey Reviewed-by: Peng Fan --- diff --git a/board/gateworks/venice/eeprom.c b/board/gateworks/venice/eeprom.c index abe25256e66..351d18886f1 100644 --- a/board/gateworks/venice/eeprom.c +++ b/board/gateworks/venice/eeprom.c @@ -322,7 +322,7 @@ int venice_eeprom_init(int quiet) /* create model strings */ if (base_info.model[0]) { sprintf(venice_model, "GW%c%c%c%c-%c%c-", - som_info.model[2], /* family */ + base_info.model[2], /* family */ base_info.model[3], /* baseboard */ base_info.model[4], base_info.model[5], /* subload of baseboard */ som_info.model[4], som_info.model[5]); /* last 2digits of SOM */