ARM: meson: stop printing board model after sysinfo update

After the sysinfo update, Model is printed twice, remove
the now duplicate Model print from mach-meson/board-info.

Link: https://lore.kernel.org/r/20240124-u-boot-model-print-fix-v1-1-484960069623@linaro.org
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
This commit is contained in:
Neil Armstrong
2024-01-30 09:35:51 +01:00
parent 6faba41927
commit 076529725f
-10
View File
@@ -126,13 +126,6 @@ static const char *socinfo_to_soc_id(u32 socinfo)
return "Unknown";
}
static void print_board_model(void)
{
const char *model;
model = fdt_getprop(gd->fdt_blob, 0, "model", NULL);
printf("Model: %s\n", model ? model : "Unknown");
}
static unsigned int get_socinfo(void)
{
struct regmap *regmap;
@@ -172,9 +165,6 @@ int checkboard(void)
{
unsigned int socinfo;
/* print board information */
print_board_model();
socinfo = get_socinfo();
if (!socinfo)
return 0;