]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
imx93: Move SoC and lifeclycle information to debug level
authorFabio Estevam <festevam@denx.de>
Mon, 15 Apr 2024 21:57:17 +0000 (18:57 -0300)
committerFabio Estevam <festevam@gmail.com>
Sat, 20 Apr 2024 03:36:13 +0000 (00:36 -0300)
The following information printed on every boot is not very
helpful for the users:

SOC: 0xa0009300
LC: 0x40040

Move them to debug() level.

Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Mathieu Othacehe <othacehe@gnu.org>
board/freescale/imx93_evk/spl.c
board/phytec/phycore_imx93/spl.c
board/variscite/imx93_var_som/spl.c

index 7331a20f94c8c6f14dd036ca737fe97ccd864b38..6d5e110b27764665cbf80eb923a25086449862a3 100644 (file)
@@ -120,8 +120,8 @@ void board_init_f(ulong dummy)
        if (ret) {
                printf("Fail to init Sentinel API\n");
        } else {
-               printf("SOC: 0x%x\n", gd->arch.soc_rev);
-               printf("LC: 0x%x\n", gd->arch.lifecycle);
+               debug("SOC: 0x%x\n", gd->arch.soc_rev);
+               debug("LC: 0x%x\n", gd->arch.lifecycle);
        }
 
        power_init_board();
index f03bfee9ffa89b7a64adff12cebe8328e3e802b7..5efa38a144272de94bf97dca4866b79e2897e881 100644 (file)
@@ -126,8 +126,8 @@ void board_init_f(ulong dummy)
        if (ret) {
                printf("Fail to init ELE API\n");
        } else {
-               printf("SOC: 0x%x\n", gd->arch.soc_rev);
-               printf("LC: 0x%x\n", gd->arch.lifecycle);
+               debug("SOC: 0x%x\n", gd->arch.soc_rev);
+               debug("LC: 0x%x\n", gd->arch.lifecycle);
        }
 
        clock_init();
index 71f346cf77bd779b54780b3af0bfb7660aec7fbb..8852aea156b70edeaf90d326ca96a25852b639d4 100644 (file)
@@ -125,8 +125,8 @@ void board_init_f(ulong dummy)
        if (ret) {
                printf("Fail to init ELE API\n");
        } else {
-               printf("SOC: 0x%x\n", gd->arch.soc_rev);
-               printf("LC: 0x%x\n", gd->arch.lifecycle);
+               debug("SOC: 0x%x\n", gd->arch.soc_rev);
+               debug("LC: 0x%x\n", gd->arch.lifecycle);
        }
        power_init_board();