diff options
author | Scott Wood <scottwood@freescale.com> | 2007-05-11 21:52:03 +0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-12 05:32:48 +0400 |
commit | dab4d7984ee61c8eb25569b12e7a996f5aaef2ba (patch) | |
tree | 5b6ff1e3ca2be89cb2811060c6e91a40b1aa9214 /arch/powerpc/boot/cuboot-85xx.c | |
parent | 36bd2836f39d9c256689475432dd7d36eda1c491 (diff) | |
download | linux-dab4d7984ee61c8eb25569b12e7a996f5aaef2ba.tar.xz |
[POWERPC] U-boot passes the initrd as start/end, not start/size.
The boot wrapper platform init code on 83xx and 85xx using the cuboot
platform type was incorrectly assuming that u-boot supplied the size
of the initrd, whereas it actually supplies the end address. This
fixes it.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/boot/cuboot-85xx.c')
-rw-r--r-- | arch/powerpc/boot/cuboot-85xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/cuboot-85xx.c b/arch/powerpc/boot/cuboot-85xx.c index f88ba00ac122..e2560317f278 100644 --- a/arch/powerpc/boot/cuboot-85xx.c +++ b/arch/powerpc/boot/cuboot-85xx.c @@ -58,7 +58,7 @@ void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, memcpy(&bd, (bd_t *)r3, sizeof(bd)); loader_info.initrd_addr = r4; - loader_info.initrd_size = r4 ? r5 : 0; + loader_info.initrd_size = r4 ? r5 - r4 : 0; loader_info.cmdline = (char *)r6; loader_info.cmdline_len = r7 - r6; |