projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
760b957
)
rockchip: rk3399: spl: add missing \n to output
author
Heinrich Schuchardt
<
[email protected]
>
Sun, 3 Jun 2018 19:10:13 +0000
(21:10 +0200)
committer
Philipp Tomsich
<
[email protected]
>
Fri, 20 Jul 2018 23:55:26 +0000
(
01:55
+0200)
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 <
[email protected]
>
Reviewed-by: Philipp Tomsich <
[email protected]
>
Acked-by: Philipp Tomsich <
[email protected]
>
arch/arm/mach-rockchip/rk3399-board-spl.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-rockchip/rk3399-board-spl.c
b/arch/arm/mach-rockchip/rk3399-board-spl.c
index 9b5dc418c3933b8ae424a58fbf1f937d122fba60..43350e38b13c1eca3030e3b425bcbc4540357177 100644
(file)
--- 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();