summaryrefslogtreecommitdiff
path: root/arch/x86
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-05-03 23:48:58 +0300
committerTom Rini <trini@konsulko.com>2021-07-07 17:17:54 +0300
commitcb80ff20f2c8392f19248418f9a19a0474661860 (patch)
treea4a4ca65c3d6bb8331c0ba9746f300d9709abf7c /arch/x86
parentc48b781581f6c3b24cb40241e90296b0e7f7a30f (diff)
downloadu-boot-cb80ff20f2c8392f19248418f9a19a0474661860.tar.xz
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 'arch/x86')
-rw-r--r--arch/x86/cpu/cpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/cpu/cpu.c b/arch/x86/cpu/cpu.c
index 9c4edfcbfd..01dece5769 100644
--- a/arch/x86/cpu/cpu.c
+++ b/arch/x86/cpu/cpu.c
@@ -178,10 +178,12 @@ int default_print_cpuinfo(void)
return 0;
}
+#if CONFIG_IS_ENABLED(BOOTSTAGE)
void show_boot_progress(int val)
{
outb(val, POST_PORT);
}
+#endif
#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB)
/*