summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Muellner <christoph.muellner@theobroma-systems.com>2019-06-05 17:06:58 +0200
committerChristoph Muellner <christoph.muellner@theobroma-systems.com>2019-06-06 13:56:38 +0200
commita5834ca76e4a75e52c1e55390c65c0979f2c36b0 (patch)
treefb07a8b4baf1dcb05851cb1086f10eb3da26a798
parent2df3aea7a27a3216caecd59901adeb88b0f1427f (diff)
rockchip: rk3368: Print banner in SPL.
TPL has one, and U-Boot proper as well. To see when SPL is starting, this patch adds code to print a banner line when SPL is starting. Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
-rw-r--r--arch/arm/mach-rockchip/rk3368-board-spl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/rk3368-board-spl.c b/arch/arm/mach-rockchip/rk3368-board-spl.c
index 9bcdb62281..405cf6f129 100644
--- a/arch/arm/mach-rockchip/rk3368-board-spl.c
+++ b/arch/arm/mach-rockchip/rk3368-board-spl.c
@@ -26,6 +26,8 @@ void board_init_f(ulong dummy)
struct udevice *dev;
int ret;
+ printascii("U-Boot SPL board init\n");
+
ret = spl_early_init();
if (ret) {
debug("spl_early_init() failed: %d\n", ret);