diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2010-11-24 15:35:48 +0800 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-12-16 18:10:58 +0000 |
commit | e31fee7c3a197d88d1d0ced0e8600386da27fec4 (patch) | |
tree | c18649da51706088339ba3426d6da32d61431450 /arch/mips/kernel | |
parent | 5878fc936aebf592cca418ca50773cd578f7daf4 (diff) | |
download | kernel_samsung_smdk4412-e31fee7c3a197d88d1d0ced0e8600386da27fec4.zip kernel_samsung_smdk4412-e31fee7c3a197d88d1d0ced0e8600386da27fec4.tar.gz kernel_samsung_smdk4412-e31fee7c3a197d88d1d0ced0e8600386da27fec4.tar.bz2 |
MIPS: FDT size is a be32
The totalsize field was be32. And the reserve bootmem would cause failure.
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
To: devicetree-discuss@lists.ozlabs.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-mips@linux-mips.org
Cc: grant.likely@secretlab.ca
Cc: David Daney <ddaney@caviumnetworks.com>
Cc: Dezhong Diao <dediao@cisco.com>
Patchwork: https://patchwork.linux-mips.org/patch/1838/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r-- | arch/mips/kernel/prom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/prom.c b/arch/mips/kernel/prom.c index e000b27..9dbe583 100644 --- a/arch/mips/kernel/prom.c +++ b/arch/mips/kernel/prom.c @@ -100,7 +100,7 @@ void __init device_tree_init(void) return; base = virt_to_phys((void *)initial_boot_params); - size = initial_boot_params->totalsize; + size = be32_to_cpu(initial_boot_params->totalsize); /* Before we do anything, lets reserve the dt blob */ reserve_mem_mach(base, size); |