Call detect_memory_region() from plat_mem_setup() unless the size was already read from the system controller. Signed-off-by: John Crispin <blogic@xxxxxxxxxxx> --- arch/mips/ralink/of.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/arch/mips/ralink/of.c b/arch/mips/ralink/of.c index 4165e70..d285ea8 100644 --- a/arch/mips/ralink/of.c +++ b/arch/mips/ralink/of.c @@ -85,6 +85,13 @@ void __init plat_mem_setup(void) * parsed resulting in our memory appearing */ __dt_setup_arch(&__dtb_start); + + if (soc_info.mem_size) + add_memory_region(soc_info.mem_base, soc_info.mem_size, + BOOT_MEM_RAM); + else + detect_memory_region(soc_info.mem_base, soc_info.mem_size_min, + soc_info.mem_size_max); } static int __init plat_of_setup(void) -- 1.7.10.4