diff options
author | Massimo Pegorer <massimo.pegorer@gmail.com> | 2023-08-02 19:05:24 +0200 |
---|---|---|
committer | Kever Yang <kever.yang@rock-chips.com> | 2023-08-12 10:37:32 +0800 |
commit | 36adce73724d53f0a22520af86690381b69518aa (patch) | |
tree | 28d561873b8fd4a2ad06b0119877c1306e9c4a6e | |
parent | 08e74ac3d9c20d29e38c1ec6e50688f978975097 (diff) | |
download | u-boot-36adce73724d53f0a22520af86690381b69518aa.zip u-boot-36adce73724d53f0a22520af86690381b69518aa.tar.gz u-boot-36adce73724d53f0a22520af86690381b69518aa.tar.bz2 |
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>
-rw-r--r-- | arch/arm/mach-rockchip/spl.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/arm/mach-rockchip/spl.c b/arch/arm/mach-rockchip/spl.c index a6396b3..87280e2 100644 --- a/arch/arm/mach-rockchip/spl.c +++ b/arch/arm/mach-rockchip/spl.c @@ -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(); |