mirror of
https://xff.cz/git/u-boot/
synced 2025-12-30 00:07:10 +01:00
global: Move remaining CONFIG_SYS_SDRAM_* to CFG_SYS_SDRAM_*
The rest of the unmigrated CONFIG symbols in the CONFIG_SYS_SDRAM namespace do not easily transition to Kconfig. In many cases they likely should come from the device tree instead. Move these out of CONFIG namespace and in to CFG namespace. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -116,8 +116,8 @@ ulong env_get_bootm_low(void)
|
||||
return tmp;
|
||||
}
|
||||
|
||||
#if defined(CONFIG_SYS_SDRAM_BASE)
|
||||
return CONFIG_SYS_SDRAM_BASE;
|
||||
#if defined(CFG_SYS_SDRAM_BASE)
|
||||
return CFG_SYS_SDRAM_BASE;
|
||||
#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE) || defined(CONFIG_RISCV)
|
||||
return gd->bd->bi_dram[0].start;
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user