summaryrefslogtreecommitdiff
path: root/board/xilinx
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:40:57 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 15:41:40 +0300
commit1f3a3679f565536e73e350643f22640fc95c3530 (patch)
treec49d20f515665afba6c962907fcd8a595d01351b /board/xilinx
parent5b4d810de73cea31768dfd282667d81243f3d7b9 (diff)
downloadu-boot-1f3a3679f565536e73e350643f22640fc95c3530.tar.xz
Correct SPL use of SYS_MEM_RSVD_FOR_MMU
This converts 1 usage of this option to the non-SPL form, since there is no SPL_SYS_MEM_RSVD_FOR_MMU defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/xilinx')
-rw-r--r--board/xilinx/versal-net/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/versal-net/board.c b/board/xilinx/versal-net/board.c
index 7ff2c62011..6724c7290f 100644
--- a/board/xilinx/versal-net/board.c
+++ b/board/xilinx/versal-net/board.c
@@ -195,7 +195,7 @@ int dram_init(void)
{
int ret;
- if (CONFIG_IS_ENABLED(SYS_MEM_RSVD_FOR_MMU))
+ if (IS_ENABLED(CONFIG_SYS_MEM_RSVD_FOR_MMU))
ret = fdtdec_setup_mem_size_base();
else
ret = fdtdec_setup_mem_size_base_lowest();