mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-21 22:51:27 +02:00
Correct SPL uses of ALLEYCAT_5
This converts 2 usages of this option to the non-SPL form, since there is no SPL_ALLEYCAT_5 defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
8c2be2086f
commit
51864cdcbc
@ -53,7 +53,7 @@ __weak int dram_init_banksize(void)
|
|||||||
return a8k_dram_init_banksize();
|
return a8k_dram_init_banksize();
|
||||||
else if (CONFIG_IS_ENABLED(ARMADA_3700))
|
else if (CONFIG_IS_ENABLED(ARMADA_3700))
|
||||||
return a3700_dram_init_banksize();
|
return a3700_dram_init_banksize();
|
||||||
else if (CONFIG_IS_ENABLED(ALLEYCAT_5))
|
else if (IS_ENABLED(CONFIG_ALLEYCAT_5))
|
||||||
return alleycat5_dram_init_banksize();
|
return alleycat5_dram_init_banksize();
|
||||||
else
|
else
|
||||||
return fdtdec_setup_memory_banksize();
|
return fdtdec_setup_memory_banksize();
|
||||||
@ -70,7 +70,7 @@ __weak int dram_init(void)
|
|||||||
if (CONFIG_IS_ENABLED(ARMADA_3700))
|
if (CONFIG_IS_ENABLED(ARMADA_3700))
|
||||||
return a3700_dram_init();
|
return a3700_dram_init();
|
||||||
|
|
||||||
if (CONFIG_IS_ENABLED(ALLEYCAT_5))
|
if (IS_ENABLED(CONFIG_ALLEYCAT_5))
|
||||||
return alleycat5_dram_init();
|
return alleycat5_dram_init();
|
||||||
|
|
||||||
if (fdtdec_setup_mem_size_base() != 0)
|
if (fdtdec_setup_mem_size_base() != 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user