Commit cdfce539 authored by John Crispin's avatar John Crispin Committed by Ralf Baechle

MIPS: ralink: add missing SZ_1M multiplier

On RT5350 the memory size is set to Bytes and not MegaBytes due to a missing
multiplier.
Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>
Cc: John Crispin <blogic@openwrt.org>
Patchwork: https://patchwork.linux-mips.org/patch/5378/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 7b741aa4
...@@ -88,7 +88,7 @@ void __init plat_mem_setup(void) ...@@ -88,7 +88,7 @@ void __init plat_mem_setup(void)
__dt_setup_arch(&__dtb_start); __dt_setup_arch(&__dtb_start);
if (soc_info.mem_size) if (soc_info.mem_size)
add_memory_region(soc_info.mem_base, soc_info.mem_size, add_memory_region(soc_info.mem_base, soc_info.mem_size * SZ_1M,
BOOT_MEM_RAM); BOOT_MEM_RAM);
else else
detect_memory_region(soc_info.mem_base, detect_memory_region(soc_info.mem_base,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment