From 8c352a61eef6a8a2d7ffc4159a499f78f5fae99c Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Mon, 15 Apr 2024 18:57:17 -0300 Subject: imx93: Move SoC and lifeclycle information to debug level 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 Reviewed-by: Mathieu Othacehe --- board/phytec/phycore_imx93/spl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'board/phytec/phycore_imx93/spl.c') diff --git a/board/phytec/phycore_imx93/spl.c b/board/phytec/phycore_imx93/spl.c index f03bfee9ffa..5efa38a1442 100644 --- a/board/phytec/phycore_imx93/spl.c +++ b/board/phytec/phycore_imx93/spl.c @@ -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(); -- cgit v1.2.3