This converts 2 usages of this option to the non-SPL form, since there is
no SPL_ARMADA_8K defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
__weak int dram_init_banksize(void)
{
- if (CONFIG_IS_ENABLED(ARMADA_8K))
+ if (IS_ENABLED(CONFIG_ARMADA_8K))
return a8k_dram_init_banksize();
else if (IS_ENABLED(CONFIG_ARMADA_3700))
return a3700_dram_init_banksize();
__weak int dram_init(void)
{
- if (CONFIG_IS_ENABLED(ARMADA_8K)) {
+ if (IS_ENABLED(CONFIG_ARMADA_8K)) {
gd->ram_size = a8k_dram_scan_ap_sz();
if (gd->ram_size != 0)
return 0;