aboutsummaryrefslogtreecommitdiff
path: root/arch/x86
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 15:36:20 -0700
committerTom Rini <trini@konsulko.com>2023-02-09 16:32:25 -0500
commitb8bffe661f4fac2b07cca7f32a950a6fcdec7533 (patch)
treec3c201c0e363a658afdc7a06794cf9f44d40cd8e /arch/x86
parente1f0f8ac9f2129dbf08bec94c0e1a57317ae3075 (diff)
downloadu-boot-b8bffe661f4fac2b07cca7f32a950a6fcdec7533.zip
u-boot-b8bffe661f4fac2b07cca7f32a950a6fcdec7533.tar.gz
u-boot-b8bffe661f4fac2b07cca7f32a950a6fcdec7533.tar.bz2
Correct SPL uses of BOOTSTAGE_REPORT
This converts 2 usages of this option to the non-SPL form, since there is no SPL_BOOTSTAGE_REPORT defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/lib/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/bootm.c b/arch/x86/lib/bootm.c
index eafcddf..04e475b 100644
--- a/arch/x86/lib/bootm.c
+++ b/arch/x86/lib/bootm.c
@@ -39,7 +39,7 @@ void bootm_announce_and_cleanup(void)
timestamp_add_now(TS_START_KERNEL);
#endif
bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
-#if CONFIG_IS_ENABLED(BOOTSTAGE_REPORT)
+#if IS_ENABLED(CONFIG_BOOTSTAGE_REPORT)
bootstage_report();
#endif