mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
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>
This commit is contained in:
parent
760b95789e
commit
9125947687
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue