rockchip: spl: Drop out of scope debug message related to uart init

Debug uart is no more inited in board_init_f function: remove this
debug message from board_init_f. If an earliest-as-possible message
after debug uart initialization is needed, enable DEBUG_UART_ANNOUNCE
Kconfig option, instead.

Signed-off-by: Massimo Pegorer <massimo.pegorer+oss@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
Massimo Pegorer 2023-08-02 19:05:24 +02:00 committed by Kever Yang
parent 08e74ac3d9
commit 36adce7372

View file

@ -112,17 +112,6 @@ void board_init_f(ulong dummy)
{
int ret;
#ifdef CONFIG_DEBUG_UART
/*
* Debug UART can be used from here if required:
*
* printch('a');
* printhex8(0x1234);
* printascii("string");
*/
debug("\nspl:debug uart enabled in %s\n", __func__);
#endif
board_early_init_f();
ret = spl_early_init();