diff options
author | Simon Glass <sjg@chromium.org> | 2021-09-25 19:43:21 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-10-08 15:53:26 -0400 |
commit | 0c303f9a6628de9664b4f9140464a6f9d8224c36 (patch) | |
tree | ec2522fbeb6900049f363a27cc8642ec363cd38b /lib | |
parent | bf371b4cf599ad1a448577daaba997a0b0ba6c9c (diff) | |
download | u-boot-0c303f9a6628de9664b4f9140464a6f9d8224c36.zip u-boot-0c303f9a6628de9664b4f9140464a6f9d8224c36.tar.gz u-boot-0c303f9a6628de9664b4f9140464a6f9d8224c36.tar.bz2 |
image: Drop IMAGE_ENABLE_OF_LIBFDT
Add a host Kconfig for OF_LIBFDT. With this we can use
CONFIG_IS_ENABLED(OF_LIBFDT) directly in the tools build, so drop the
unnecessary indirection.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lmb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ static void lmb_reserve_common(struct lmb *lmb, void *fdt_blob) arch_lmb_reserve(lmb); board_lmb_reserve(lmb); - if (IMAGE_ENABLE_OF_LIBFDT && fdt_blob) + if (CONFIG_IS_ENABLED(OF_LIBFDT) && fdt_blob) boot_fdt_add_mem_rsv_regions(lmb, fdt_blob); } |