summaryrefslogtreecommitdiff
path: root/arch/mips
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:36:20 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 00:32:25 +0300
commitb8bffe661f4fac2b07cca7f32a950a6fcdec7533 (patch)
treec3c201c0e363a658afdc7a06794cf9f44d40cd8e /arch/mips
parente1f0f8ac9f2129dbf08bec94c0e1a57317ae3075 (diff)
downloadu-boot-b8bffe661f4fac2b07cca7f32a950a6fcdec7533.tar.xz
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/mips')
-rw-r--r--arch/mips/lib/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/lib/bootm.c b/arch/mips/lib/bootm.c
index 5687ff22cb..ab92bd06b0 100644
--- a/arch/mips/lib/bootm.c
+++ b/arch/mips/lib/bootm.c
@@ -287,7 +287,7 @@ static void boot_jump_linux(struct bootm_headers *images)
#if IS_ENABLED(CONFIG_BOOTSTAGE_FDT)
bootstage_fdt_add_report();
#endif
-#if CONFIG_IS_ENABLED(BOOTSTAGE_REPORT)
+#if IS_ENABLED(CONFIG_BOOTSTAGE_REPORT)
bootstage_report();
#endif