diff options
author | Simon Glass <sjg@chromium.org> | 2021-09-25 19:43:27 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-10-08 15:53:26 -0400 |
commit | 3ac0f504125e2f97364ba8cc6bc95c1e350bd35a (patch) | |
tree | 508f16c60c706a69a11524a785b75301860264c1 /common/image-fdt.c | |
parent | 30ba2828652915d29892146022ed92b2bd524ad6 (diff) | |
download | u-boot-3ac0f504125e2f97364ba8cc6bc95c1e350bd35a.tar.gz |
image: Drop IMAGE_OF_SYSTEM_SETUP
This is not needed with Kconfig, since we can use IS_ENABLED() easily
enough. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'common/image-fdt.c')
-rw-r--r-- | common/image-fdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-fdt.c b/common/image-fdt.c index 2be6d193f4..abea17bd56 100644 --- a/common/image-fdt.c +++ b/common/image-fdt.c @@ -597,7 +597,7 @@ int image_setup_libfdt(bootm_headers_t *images, void *blob, } } } - if (IMAGE_OF_SYSTEM_SETUP) { + if (IS_ENABLED(CONFIG_OF_SYSTEM_SETUP)) { fdt_ret = ft_system_setup(blob, gd->bd); if (fdt_ret) { printf("ERROR: system-specific fdt fixup failed: %s\n", |