mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
board_f: call init_func_ram on MIPS
Assigning gd->ram_size the return value of initdram matches the existing MIPS board behaviour. Suggested-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Signed-off-by: Paul Burton <paul.burton@imgtec.com>
This commit is contained in:
parent
a0af08b9db
commit
3da7e5a50b
1 changed files with 2 additions and 2 deletions
|
@ -173,7 +173,7 @@ static int announce_dram_init(void)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PPC
|
||||
#if defined(CONFIG_MIPS) || defined(CONFIG_PPC)
|
||||
static int init_func_ram(void)
|
||||
{
|
||||
#ifdef CONFIG_BOARD_TYPES
|
||||
|
@ -889,7 +889,7 @@ static init_fnc_t init_sequence_f[] = {
|
|||
#ifdef CONFIG_ARM
|
||||
dram_init, /* configure available RAM banks */
|
||||
#endif
|
||||
#ifdef CONFIG_PPC
|
||||
#if defined(CONFIG_MIPS) || defined(CONFIG_PPC)
|
||||
init_func_ram,
|
||||
#endif
|
||||
#ifdef CONFIG_POST
|
||||
|
|
Loading…
Add table
Reference in a new issue