From: Heinrich Schuchardt Date: Sun, 3 Jun 2018 19:10:13 +0000 (+0200) Subject: rockchip: rk3399: spl: add missing \n to output X-Git-Tag: v2018.09-rc1~72^2~5 X-Git-Url: https://repo.jachan.dev/J-u-boot.git/commitdiff_plain/91259476872e91bc3d0e6b92f81e5b7a67e7b447 rockchip: rk3399: spl: add missing \n to output Without the patch SPL (in case of an error) creates an output like: U-Boot SPL board initMissing DTB The patch adds the missing line feed. So now we get: U-Boot SPL board init Missing DTB Signed-off-by: Heinrich Schuchardt Reviewed-by: Philipp Tomsich Acked-by: Philipp Tomsich --- diff --git a/arch/arm/mach-rockchip/rk3399-board-spl.c b/arch/arm/mach-rockchip/rk3399-board-spl.c index 9b5dc418c39..43350e38b13 100644 --- a/arch/arm/mach-rockchip/rk3399-board-spl.c +++ b/arch/arm/mach-rockchip/rk3399-board-spl.c @@ -172,7 +172,7 @@ void board_init_f(ulong dummy) * printascii("string"); */ debug_uart_init(); - printascii("U-Boot SPL board init"); + printascii("U-Boot SPL board init\n"); #endif ret = spl_early_init();