diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-04-18 11:29:01 -0500 |
---|---|---|
committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2008-04-18 17:44:50 -0500 |
commit | 0878af169b181868a105b5c33f3a6423e2c9fd60 (patch) | |
tree | fd05f0c776cf94b39791af33480feb1f9fd13f13 | |
parent | 88353a985109562a639b2f8a0c90d77011bfe374 (diff) | |
download | u-boot-imx-0878af169b181868a105b5c33f3a6423e2c9fd60.zip u-boot-imx-0878af169b181868a105b5c33f3a6423e2c9fd60.tar.gz u-boot-imx-0878af169b181868a105b5c33f3a6423e2c9fd60.tar.bz2 |
85xx: Fix size of cpu-release-addr property
The cpu-release-addr is defined as always being a 64-bit quanity regardless
if we are running on a 32-bit or 64-bit machine.
-rw-r--r-- | cpu/mpc85xx/fdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc85xx/fdt.c b/cpu/mpc85xx/fdt.c index bde6d1e..bb87740 100644 --- a/cpu/mpc85xx/fdt.c +++ b/cpu/mpc85xx/fdt.c @@ -52,7 +52,7 @@ void ft_fixup_cpu(void *blob, u64 memory_limit) if (*reg == id) { fdt_setprop_string(blob, off, "status", "okay"); } else { - u32 val = *reg * SIZE_BOOT_ENTRY + spin_tbl_addr; + u64 val = *reg * SIZE_BOOT_ENTRY + spin_tbl_addr; val = cpu_to_fdt32(val); fdt_setprop_string(blob, off, "status", "disabled"); |