From b8bffe661f4fac2b07cca7f32a950a6fcdec7533 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 5 Feb 2023 15:36:20 -0700 Subject: 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 --- arch/mips/lib/bootm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/mips/lib') diff --git a/arch/mips/lib/bootm.c b/arch/mips/lib/bootm.c index 5687ff22cb8..ab92bd06b0e 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 -- cgit v1.3.1