Correct SPL use of FDT_SIMPLEFB
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:39:57 +0000 (15:39 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 9 Feb 2023 21:32:26 +0000 (16:32 -0500)
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_FDT_SIMPLEFB defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
board/st/stm32mp1/stm32mp1.c

index 1318ba8..ca8f025 100644 (file)
@@ -930,7 +930,7 @@ int ft_board_setup(void *blob, struct bd_info *bd)
                if (IS_ENABLED(CONFIG_FDT_FIXUP_PARTITIONS))
                        fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
 
-       if (CONFIG_IS_ENABLED(FDT_SIMPLEFB))
+       if (IS_ENABLED(CONFIG_FDT_SIMPLEFB))
                fdt_simplefb_enable_and_mem_rsv(blob);
 
        return 0;