aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-06-03 21:10:13 +0200
committerPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>2018-07-21 01:55:26 +0200
commit91259476872e91bc3d0e6b92f81e5b7a67e7b447 (patch)
tree5e0f0357eb9e58367d2f386fa6eb8f64dcec0e2e
parent760b95789e0604fe62ce280674f82a3778b36c9a (diff)
downloadu-boot-91259476872e91bc3d0e6b92f81e5b7a67e7b447.zip
u-boot-91259476872e91bc3d0e6b92f81e5b7a67e7b447.tar.gz
u-boot-91259476872e91bc3d0e6b92f81e5b7a67e7b447.tar.bz2
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 <xypron.glpk@gmx.de> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
-rw-r--r--arch/arm/mach-rockchip/rk3399-board-spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/rk3399-board-spl.c b/arch/arm/mach-rockchip/rk3399-board-spl.c
index 9b5dc41..43350e3 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();