diff options
author | Simon Glass | 2023-02-05 15:39:49 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-09 16:32:26 -0500 |
commit | b2561c5bea893cc23ad5b8e7628b43d020f3f753 (patch) | |
tree | 25122bc0a4287485687be8601a18e6da688a0d23 /board/xilinx/versal | |
parent | 821d1df52a411ccbd6d891394ce2ea2b09f0057a (diff) |
Correct SPL uses of ENV_VARS_UBOOT_RUNTIME_CONFIG
This converts 4 usages of this option to the non-SPL form, since there is
no SPL_ENV_VARS_UBOOT_RUNTIME_CONFIG defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/xilinx/versal')
-rw-r--r-- | board/xilinx/versal/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/versal/board.c b/board/xilinx/versal/board.c index 4cdc2ecd1d2..81e1b69905e 100644 --- a/board/xilinx/versal/board.c +++ b/board/xilinx/versal/board.c @@ -142,7 +142,7 @@ int board_late_init(void) return 0; } - if (!CONFIG_IS_ENABLED(ENV_VARS_UBOOT_RUNTIME_CONFIG)) + if (!IS_ENABLED(CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG)) return 0; bootmode = versal_get_bootmode(); |