summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:39:57 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 00:32:26 +0300
commit96e3b52b24f9adbd4c0a785491afec97975dd8d0 (patch)
tree81f925f9c04024f3fb683df15434ed95c9785f3a
parent0d9da97daae6aa8f9cb1e9ae9f989e9a0c2cc8f1 (diff)
downloadu-boot-96e3b52b24f9adbd4c0a785491afec97975dd8d0.tar.xz
Correct SPL use of FDT_SIMPLEFB
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>
-rw-r--r--board/st/stm32mp1/stm32mp1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/st/stm32mp1/stm32mp1.c b/board/st/stm32mp1/stm32mp1.c
index 1318ba8951..ca8f0255ae 100644
--- a/board/st/stm32mp1/stm32mp1.c
+++ b/board/st/stm32mp1/stm32mp1.c
@@ -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;