aboutsummaryrefslogtreecommitdiff
path: root/board/st/stv0991
diff options
context:
space:
mode:
authorTom Rini2021-05-03 16:48:58 -0400
committerTom Rini2021-07-07 10:17:54 -0400
commitcb80ff20f2c8392f19248418f9a19a0474661860 (patch)
treea4a4ca65c3d6bb8331c0ba9746f300d9709abf7c /board/st/stv0991
parentc48b781581f6c3b24cb40241e90296b0e7f7a30f (diff)
bootstage: Eliminate when not enabled
When we do not have bootstage enabled, rather than include an empty dummy function, we just don't reference it. This saves us space in some tight builds. This also shows a few cases where show_boot_progress was incorrectly guarded before. Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/st/stv0991')
-rw-r--r--board/st/stv0991/stv0991.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/st/stv0991/stv0991.c b/board/st/stv0991/stv0991.c
index 3b0de82db28..57ca9f659c1 100644
--- a/board/st/stv0991/stv0991.c
+++ b/board/st/stv0991/stv0991.c
@@ -37,7 +37,7 @@ U_BOOT_DRVINFO(stv09911_serials) = {
};
#endif
-#ifdef CONFIG_SHOW_BOOT_PROGRESS
+#if CONFIG_IS_ENABLED(BOOTSTAGE)
void show_boot_progress(int progress)
{
printf("%i\n", progress);