diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-07 13:32:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-07 13:32:22 -0400 |
commit | 5b8a83551d339736af92c43524ed0e1ba01122af (patch) | |
tree | c05ddf8c68a2c7f00c8843a231026d95b3d82f43 /common/init/board_init.c | |
parent | 54fb6e396dd6a0cfbbed77d6baffa23899f4fca9 (diff) | |
parent | 7bb1cc3bb9d6fca5f285db4df2299c3b80aa8c4a (diff) |
Merge branch '2021-07-06-update-to-gcc11-clang11'
- Update CI to use gcc-11.1 and clang-11 to build everything. This
requires a few fixes to the code that these newer compilers have
exposed.
Diffstat (limited to 'common/init/board_init.c')
-rw-r--r-- | common/init/board_init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/init/board_init.c b/common/init/board_init.c index 3f183ee1132..0965b96fa3a 100644 --- a/common/init/board_init.c +++ b/common/init/board_init.c @@ -166,7 +166,9 @@ void board_init_f_init_reserve(ulong base) board_init_f_init_stack_protection(); } +#if CONFIG_IS_ENABLED(BOOTSTAGE) /* * Board-specific Platform code can reimplement show_boot_progress () if needed */ __weak void show_boot_progress(int val) {} +#endif |