commit | 496c5483e9ad80d34ff0d9ee9abb813e51be2237 | [log] [tgz] |
---|---|---|
author | Heiko Schocher <hs@denx.de> | Tue Jun 07 08:31:20 2016 +0200 |
committer | Tom Rini <trini@konsulko.com> | Thu Jun 09 13:53:08 2016 -0400 |
tree | 61ccb82de2e8c1a8272f38ae4df5f6db43029d80 | |
parent | 694607b563df4425b2d50d220048cc3299a6e947 [diff] [blame] |
bootstage: call show_boot_progress also in SPL show_boot_progress() is now called from SPL also. Signed-off-by: Heiko Schocher <hs@denx.de>
diff --git a/common/init/board_init.c b/common/init/board_init.c index d17bb29..ef01a9a 100644 --- a/common/init/board_init.c +++ b/common/init/board_init.c
@@ -146,3 +146,8 @@ base += CONFIG_SYS_MALLOC_F_LEN; #endif } + +/* + * Board-specific Platform code can reimplement show_boot_progress () if needed + */ +__weak void show_boot_progress(int val) {}