summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-12-17 06:59:28 +0300
committerTom Rini <trini@konsulko.com>2021-12-23 18:24:39 +0300
commit931511d0897ea1f63102b134733e3a71d3545f64 (patch)
treed077792e10e7b9db8f3a6cd0728a3b86fa769eae /lib
parent66cd511f133a2f0e5f38d3c92317c851e42b01c0 (diff)
downloadu-boot-931511d0897ea1f63102b134733e3a71d3545f64.tar.xz
fdt: Use if() for fdtcontroladdr check
Change this to use if() instead of #if Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/fdtdec.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c
index 299a2c3a32..659aeffd82 100644
--- a/lib/fdtdec.c
+++ b/lib/fdtdec.c
@@ -1634,12 +1634,11 @@ int fdtdec_setup(void)
if (ret)
return ret;
# endif
-# ifndef CONFIG_SPL_BUILD
- /* Allow the early environment to override the fdt address */
- gd->fdt_blob = map_sysmem
- (env_get_ulong("fdtcontroladdr", 16,
+ if (!IS_ENABLED(CONFIG_SPL_BUILD)) {
+ /* Allow the early environment to override the fdt address */
+ gd->fdt_blob = map_sysmem(env_get_ulong("fdtcontroladdr", 16,
(unsigned long)map_to_sysmem(gd->fdt_blob)), 0);
-# endif
+ }
if (CONFIG_IS_ENABLED(MULTI_DTB_FIT))
setup_multi_dtb_fit();