[PATCH] arm: mvebu: Use printf for printing fatal errors
Stefan Roese
sr at denx.de
Sat Dec 18 14:50:00 CET 2021
On 12/17/21 18:31, Pali Rohár wrote:
> There is no point to hide/disable fatal errors via debug() macro.
> Print fatal errors loudly.
>
> Signed-off-by: Pali Rohár <pali at kernel.org>
Applied to u-boot-marvell/next
Thanks,
Stefan
> ---
> arch/arm/mach-mvebu/spl.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mach-mvebu/spl.c b/arch/arm/mach-mvebu/spl.c
> index 29a8adc9d79c..609495097585 100644
> --- a/arch/arm/mach-mvebu/spl.c
> +++ b/arch/arm/mach-mvebu/spl.c
> @@ -313,7 +313,7 @@ void board_init_f(ulong dummy)
>
> ret = spl_init();
> if (ret) {
> - debug("spl_init() failed: %d\n", ret);
> + printf("spl_init() failed: %d\n", ret);
> hang();
> }
>
> @@ -329,7 +329,7 @@ void board_init_f(ulong dummy)
> /* Setup DDR */
> ret = ddr3_init();
> if (ret) {
> - debug("ddr3_init() failed: %d\n", ret);
> + printf("ddr3_init() failed: %d\n", ret);
> hang();
> }
> #endif
>
Viele Grüße,
Stefan Roese
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr at denx.de
More information about the U-Boot
mailing list