arm: mvebu: Use printf for printing fatal errors

There is no point to hide/disable fatal errors via debug() macro.
Print fatal errors loudly.

Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
Pali Rohár
2021-12-17 18:31:14 +01:00
committed by Stefan Roese
parent 9c0642d89b
commit 2e5d0aa396

View File

@@ -260,7 +260,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();
}
@@ -276,7 +276,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