diff options
author | Patrice Chotard | 2018-08-03 11:46:11 +0200 |
---|---|---|
committer | Tom Rini | 2018-08-13 14:03:57 -0400 |
commit | 725e09b82392711a3bf9822a2d7449e1deba4865 (patch) | |
tree | 299ca69a78f997f068d28d593bf8056c8ffb80a1 /board/st/stm32f429-discovery | |
parent | e9cd3d70244a4a262c6b1935df87c85d25df5344 (diff) |
board: stm32: use bi_dram[0].start instead of hardcoded value
Use gd->bd->bi_dram[0].start initialized from DT instead of using
hardcoded CONFIG_SYS_SDRAM_BASE from config file.
Remove unused CONFIG_SYS_RAM_BASE and CONFIG_SYS_SDRAM_BASE defines.
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'board/st/stm32f429-discovery')
-rw-r--r-- | board/st/stm32f429-discovery/stm32f429-discovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/st/stm32f429-discovery/stm32f429-discovery.c b/board/st/stm32f429-discovery/stm32f429-discovery.c index e800d70f763..500dc5fe3a6 100644 --- a/board/st/stm32f429-discovery/stm32f429-discovery.c +++ b/board/st/stm32f429-discovery/stm32f429-discovery.c @@ -54,7 +54,7 @@ int board_early_init_f(void) int board_init(void) { - gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; + gd->bd->bi_boot_params = gd->bd->bi_dram[0].start + 0x100; return 0; } |