public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] imx93: Move SoC and lifeclycle information to debug level
@ 2024-04-15 21:57 Fabio Estevam
  2024-04-16 10:26 ` Mathieu Othacehe
  2024-04-20 18:34 ` Fabio Estevam
  0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2024-04-15 21:57 UTC (permalink / raw)
  To: festevam; +Cc: ye.li, m.othacehe, u-boot, Fabio Estevam

From: Fabio Estevam <festevam@denx.de>

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>
---
 board/freescale/imx93_evk/spl.c     | 4 ++--
 board/phytec/phycore_imx93/spl.c    | 4 ++--
 board/variscite/imx93_var_som/spl.c | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/board/freescale/imx93_evk/spl.c b/board/freescale/imx93_evk/spl.c
index 7331a20f94c8..6d5e110b2776 100644
--- a/board/freescale/imx93_evk/spl.c
+++ b/board/freescale/imx93_evk/spl.c
@@ -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();
diff --git a/board/phytec/phycore_imx93/spl.c b/board/phytec/phycore_imx93/spl.c
index f03bfee9ffa8..5efa38a14427 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();
diff --git a/board/variscite/imx93_var_som/spl.c b/board/variscite/imx93_var_som/spl.c
index 71f346cf77bd..8852aea156b7 100644
--- a/board/variscite/imx93_var_som/spl.c
+++ b/board/variscite/imx93_var_som/spl.c
@@ -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();
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] imx93: Move SoC and lifeclycle information to debug level
  2024-04-15 21:57 [PATCH] imx93: Move SoC and lifeclycle information to debug level Fabio Estevam
@ 2024-04-16 10:26 ` Mathieu Othacehe
  2024-04-20 18:34 ` Fabio Estevam
  1 sibling, 0 replies; 3+ messages in thread
From: Mathieu Othacehe @ 2024-04-16 10:26 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: ye.li, u-boot, Fabio Estevam


Hello,

> 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>

Thanks,

Mathieu

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] imx93: Move SoC and lifeclycle information to debug level
  2024-04-15 21:57 [PATCH] imx93: Move SoC and lifeclycle information to debug level Fabio Estevam
  2024-04-16 10:26 ` Mathieu Othacehe
@ 2024-04-20 18:34 ` Fabio Estevam
  1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2024-04-20 18:34 UTC (permalink / raw)
  To: festevam; +Cc: ye.li, m.othacehe, u-boot, Fabio Estevam

On Mon, Apr 15, 2024 at 6:57 PM Fabio Estevam <festevam@gmail.com> wrote:
>
> From: Fabio Estevam <festevam@denx.de>
>
> 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>

Applied, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-20 18:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-15 21:57 [PATCH] imx93: Move SoC and lifeclycle information to debug level Fabio Estevam
2024-04-16 10:26 ` Mathieu Othacehe
2024-04-20 18:34 ` Fabio Estevam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox