summaryrefslogtreecommitdiff
path: root/boot/bootm.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:36:30 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 00:32:25 +0300
commit3a09f38d5e7cf690135ad2fa60eed9fc40b744c3 (patch)
tree3f356c969906328a7245a59b0db330ded7d7b0e4 /boot/bootm.c
parentcbacacd5c18e4fac64868112f970345d7732123b (diff)
downloadu-boot-3a09f38d5e7cf690135ad2fa60eed9fc40b744c3.tar.xz
Correct SPL uses of CMD_FDT
This converts 2 usages of this option to the non-SPL form, since there is no SPL_CMD_FDT defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot/bootm.c')
-rw-r--r--boot/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/bootm.c b/boot/bootm.c
index 56b82bbb8b..2eec60ec7b 100644
--- a/boot/bootm.c
+++ b/boot/bootm.c
@@ -313,7 +313,7 @@ int bootm_find_images(int flag, int argc, char *const argv[], ulong start,
return 1;
}
- if (CONFIG_IS_ENABLED(CMD_FDT))
+ if (IS_ENABLED(CONFIG_CMD_FDT))
set_working_fdt_addr(map_to_sysmem(images.ft_addr));
#endif