From: Jaehoon Chung Date: Mon, 6 Nov 2017 10:41:58 +0000 (+0900) Subject: arm: bcm283x: bcm283x-board-spl: display the SPL version X-Git-Tag: submit/tizen/20171207.072626^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=94cd7d6b83c834c7621782ba747a3788607a862e;p=platform%2Fkernel%2Fu-boot.git arm: bcm283x: bcm283x-board-spl: display the SPL version Remove the unuseful log message. Instead, display the SPL version for providing the build information. Change-Id: Ibe877ec03fb73a5c0027c3db579344d839d19acc Signed-off-by: Jaehoon Chung --- diff --git a/arch/arm/mach-bcm283x/bcm283x-board-spl.c b/arch/arm/mach-bcm283x/bcm283x-board-spl.c index a4423f796a..742469e2d4 100644 --- a/arch/arm/mach-bcm283x/bcm283x-board-spl.c +++ b/arch/arm/mach-bcm283x/bcm283x-board-spl.c @@ -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)