diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-02-27 21:51:43 -0600 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2008-02-29 12:27:21 +0100 |
commit | a6612bdfe7ef37b9787b66800cf02aaded05fbeb (patch) | |
tree | 14c9e241c6c8964a31b6e1d824cadbc1457c3e3b /lib_m68k | |
parent | 4efbe9dbb129f857f27856936112c8c02f016be6 (diff) | |
download | u-boot-imx-a6612bdfe7ef37b9787b66800cf02aaded05fbeb.zip u-boot-imx-a6612bdfe7ef37b9787b66800cf02aaded05fbeb.tar.gz u-boot-imx-a6612bdfe7ef37b9787b66800cf02aaded05fbeb.tar.bz2 |
[new uImage] Don't pass kdb to ramdisk_high since we may not have one
We don't actually need the kdb param as we are just using it to get
bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we
boot via OF we might not actually fill out a kdb.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'lib_m68k')
-rw-r--r-- | lib_m68k/bootm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib_m68k/bootm.c b/lib_m68k/bootm.c index c611497..74240af 100644 --- a/lib_m68k/bootm.c +++ b/lib_m68k/bootm.c @@ -100,8 +100,7 @@ void do_bootm_linux(cmd_tbl_t * cmdtp, int flag, rd_len = rd_data_end - rd_data_start; alloc_current = ramdisk_high (alloc_current, rd_data_start, rd_len, - kbd, sp_limit, get_sp (), - &initrd_start, &initrd_end); + sp_limit, get_sp (), &initrd_start, &initrd_end); debug("## Transferring control to Linux (at address %08lx) ...\n", (ulong) kernel); |