diff options
author | Simon Glass | 2023-02-05 15:40:57 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-10 07:41:40 -0500 |
commit | 1f3a3679f565536e73e350643f22640fc95c3530 (patch) | |
tree | c49d20f515665afba6c962907fcd8a595d01351b /board | |
parent | 5b4d810de73cea31768dfd282667d81243f3d7b9 (diff) |
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')
-rw-r--r-- | board/xilinx/versal-net/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/versal-net/board.c b/board/xilinx/versal-net/board.c index 7ff2c620110..6724c7290f8 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(); |