diff options
author | Simon Glass | 2023-02-05 17:55:03 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-10 07:41:40 -0500 |
commit | 4c77608942a4e84424cd2c19c90cd3b4f93f5d3d (patch) | |
tree | 02a3a6f1f1344737b24d5d85be340e5ac881e181 /common/board_r.c | |
parent | 10f8bc09837968fd1264aae915ba135e1b4b6e5d (diff) |
Correct SPL uses of SAVE_PREV_BL_INITRAMFS_START_ADDR
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_SAVE_PREV_BL_INITRAMFS_START_ADDR defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/board_r.c')
-rw-r--r-- | common/board_r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_r.c b/common/board_r.c index 6026e4367ce..c6c0c1ab1d9 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -452,7 +452,7 @@ static int initr_env(void) env_set_hex("fdtcontroladdr", (unsigned long)map_to_sysmem(gd->fdt_blob)); - #if (CONFIG_IS_ENABLED(SAVE_PREV_BL_INITRAMFS_START_ADDR) || \ + #if (IS_ENABLED(CONFIG_SAVE_PREV_BL_INITRAMFS_START_ADDR) || \ IS_ENABLED(CONFIG_SAVE_PREV_BL_FDT_ADDR)) save_prev_bl_data(); #endif |