arm: bcm283x: bcm283x-board-spl: display the SPL version
authorJaehoon Chung <jh80.chung@samsung.com>
Mon, 6 Nov 2017 10:41:58 +0000 (19:41 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Tue, 20 Oct 2020 01:39:02 +0000 (10:39 +0900)
Remove the unuseful log message.
Instead, display the SPL version for providing the build information.

Change-Id: Ibe877ec03fb73a5c0027c3db579344d839d19acc
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
arch/arm/mach-bcm283x/bcm283x-board-spl.c

index a4423f7..742469e 100644 (file)
@@ -35,7 +35,6 @@ DECLARE_GLOBAL_DATA_PTR;
 void board_init_f(ulong dummy)
 {
        debug_uart_init();
-       printascii("init debug uart\n\0");
 }
 
 void spl_board_init(void)
@@ -47,7 +46,8 @@ void spl_board_init(void)
        gd->dm_root = NULL;
        dm_init_and_scan(false);
 
-       printascii("spl board init\n\0");
+       printascii("\nU-Boot RPI3 SPL " PLAIN_VERSION " (" U_BOOT_DATE " - " \
+                       U_BOOT_TIME ")\n\n\0");
 }
 
 void board_boot_order(u32 *spl_boot_list)