mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-05 18:43:27 +08:00
fdt: Use if() for fdtcontroladdr check
Change this to use if() instead of #if Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
66cd511f13
commit
931511d089
@ -1634,12 +1634,11 @@ int fdtdec_setup(void)
|
|||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
# endif
|
# endif
|
||||||
# ifndef CONFIG_SPL_BUILD
|
if (!IS_ENABLED(CONFIG_SPL_BUILD)) {
|
||||||
/* Allow the early environment to override the fdt address */
|
/* Allow the early environment to override the fdt address */
|
||||||
gd->fdt_blob = map_sysmem
|
gd->fdt_blob = map_sysmem(env_get_ulong("fdtcontroladdr", 16,
|
||||||
(env_get_ulong("fdtcontroladdr", 16,
|
|
||||||
(unsigned long)map_to_sysmem(gd->fdt_blob)), 0);
|
(unsigned long)map_to_sysmem(gd->fdt_blob)), 0);
|
||||||
# endif
|
}
|
||||||
|
|
||||||
if (CONFIG_IS_ENABLED(MULTI_DTB_FIT))
|
if (CONFIG_IS_ENABLED(MULTI_DTB_FIT))
|
||||||
setup_multi_dtb_fit();
|
setup_multi_dtb_fit();
|
||||||
|
Loading…
Reference in New Issue
Block a user