ARM: mvebu: clearfog: print TLV stored product name

Use the data from EEPROM TLV to display the board identity.

Reviewed-by: Stefan Roese <sr@denx.de>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
This commit is contained in:
Baruch Siach 2020-01-20 14:20:12 +02:00 committed by Stefan Roese
parent a2e41ad2a9
commit 7211fa6f5a

View file

@ -156,7 +156,16 @@ int board_init(void)
int checkboard(void)
{
puts("Board: SolidRun ClearFog\n");
char *board = "ClearFog";
cf_read_tlv_data();
if (strlen(cf_tlv_data.tlv_product_name[0]) > 0)
board = cf_tlv_data.tlv_product_name[0];
printf("Board: SolidRun %s", board);
if (strlen(cf_tlv_data.tlv_product_name[1]) > 0)
printf(", %s", cf_tlv_data.tlv_product_name[1]);
puts("\n");
return 0;
}