ARM: meson: isolate loading of socinfo
authorStefan Agner <stefan@agner.ch>
Fri, 27 Nov 2020 16:28:20 +0000 (17:28 +0100)
committerNeil Armstrong <narmstrong@baylibre.com>
Mon, 11 Jan 2021 13:59:54 +0000 (14:59 +0100)
Move loading of socinfo into a separate function so the value can be
reused later.

Signed-off-by: Stefan Agner <stefan@agner.ch>
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
arch/arm/mach-meson/board-info.c

index e61d1ad..a0bcf38 100644 (file)
@@ -131,7 +131,7 @@ static void print_board_model(void)
        printf("Model: %s\n", model ? model : "Unknown");
 }
 
-int show_board_info(void)
+static unsigned int get_socinfo(void)
 {
        struct regmap *regmap;
        int nodeoffset, ret;
@@ -163,8 +163,20 @@ int show_board_info(void)
                return 0;
        }
 
+       return socinfo;
+}
+
+int show_board_info(void)
+{
+       unsigned int socinfo;
+
        /* print board information */
        print_board_model();
+
+       socinfo = get_socinfo();
+       if (!socinfo)
+               return 0;
+
        printf("SoC:   Amlogic Meson %s (%s) Revision %x:%x (%x:%x)\n",
               socinfo_to_soc_id(socinfo),
               socinfo_to_package_id(socinfo),