aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-02-01 09:59:53 -0500
committerTom Rini <trini@konsulko.com>2024-02-01 09:59:53 -0500
commit050a9b981d6a835133521b599be3ae189ce70f41 (patch)
tree12d6b0608402169c71d32c62eb0f5c4b0d5b8192
parentf0df21b40ca754426a9c676ddc900d8c07656307 (diff)
parent076529725f16f07a5cb2d5feba25d62b5f5a5872 (diff)
downloadu-boot-050a9b981d6a835133521b599be3ae189ce70f41.zip
u-boot-050a9b981d6a835133521b599be3ae189ce70f41.tar.gz
u-boot-050a9b981d6a835133521b599be3ae189ce70f41.tar.bz2
Merge tag 'u-boot-amlogic-fixes-20240201' of https://source.denx.de/u-boot/custodians/u-boot-amlogic
- stop printing board model twice after sysinfo update
-rw-r--r--arch/arm/mach-meson/board-info.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/arm/mach-meson/board-info.c b/arch/arm/mach-meson/board-info.c
index 95a29da..d51d9b8 100644
--- a/arch/arm/mach-meson/board-info.c
+++ b/arch/arm/mach-meson/board-info.c
@@ -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;