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>
This commit is contained in:
parent
5b4d810de7
commit
1f3a3679f5
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ int dram_init(void)
|
||||||
{
|
{
|
||||||
int ret;
|
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();
|
ret = fdtdec_setup_mem_size_base();
|
||||||
else
|
else
|
||||||
ret = fdtdec_setup_mem_size_base_lowest();
|
ret = fdtdec_setup_mem_size_base_lowest();
|
||||||
|
|
Loading…
Reference in a new issue