diff options
author | Simon Glass | 2023-02-05 15:40:44 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-10 07:41:40 -0500 |
commit | 10f8bc09837968fd1264aae915ba135e1b4b6e5d (patch) | |
tree | 96e6fec37c0b5a1b1e3fd80deb444a460e8e8c50 /arch/arm | |
parent | 4051c400c5021b798305499016df1c058e61c209 (diff) |
Correct SPL uses of SAVE_PREV_BL_FDT_ADDR
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_SAVE_PREV_BL_FDT_ADDR defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/lib/save_prev_bl_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lib/save_prev_bl_data.c b/arch/arm/lib/save_prev_bl_data.c index f4ee86a89c6..cd943eefe10 100644 --- a/arch/arm/lib/save_prev_bl_data.c +++ b/arch/arm/lib/save_prev_bl_data.c @@ -60,7 +60,7 @@ int save_prev_bl_data(void) return -ENODATA; } - if (CONFIG_IS_ENABLED(SAVE_PREV_BL_FDT_ADDR)) + if (IS_ENABLED(CONFIG_SAVE_PREV_BL_FDT_ADDR)) env_set_addr("prevbl_fdt_addr", (void *)reg0); if (!CONFIG_IS_ENABLED(SAVE_PREV_BL_INITRAMFS_START_ADDR)) return 0; |