diff options
author | Wolfgang Denk <wd@denx.de> | 2011-04-27 21:45:31 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-04-27 21:45:31 +0200 |
commit | 34b5fc4d8bba594d53a15be970ca78b03db9d7f5 (patch) | |
tree | fd9491a405ba0edd8c60e4f9f03916a8a1e891b9 /arch/m68k/lib | |
parent | 547bea12cc9dd72b4e1cd0383d7f1ecb0e43e139 (diff) | |
parent | 55b0a39314562087143f439ecae57379b97db9aa (diff) | |
download | u-boot-imx-34b5fc4d8bba594d53a15be970ca78b03db9d7f5.zip u-boot-imx-34b5fc4d8bba594d53a15be970ca78b03db9d7f5.tar.gz u-boot-imx-34b5fc4d8bba594d53a15be970ca78b03db9d7f5.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-fdt
Diffstat (limited to 'arch/m68k/lib')
-rw-r--r-- | arch/m68k/lib/bootm.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/arch/m68k/lib/bootm.c b/arch/m68k/lib/bootm.c index 76a2fb2..1229ac7 100644 --- a/arch/m68k/lib/bootm.c +++ b/arch/m68k/lib/bootm.c @@ -71,7 +71,6 @@ int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *ima int ret; ulong cmd_start, cmd_end; - ulong bootmap_base; bd_t *kbd; void (*kernel) (bd_t *, ulong, ulong, ulong, ulong); struct lmb *lmb = &images->lmb; @@ -79,17 +78,15 @@ int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *ima if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) return 1; - bootmap_base = getenv_bootm_low(); - /* allocate space and init command line */ - ret = boot_get_cmdline (lmb, &cmd_start, &cmd_end, bootmap_base); + ret = boot_get_cmdline (lmb, &cmd_start, &cmd_end); if (ret) { puts("ERROR with allocation of cmdline\n"); goto error; } /* allocate space for kernel copy of board info */ - ret = boot_get_kbd (lmb, &kbd, bootmap_base); + ret = boot_get_kbd (lmb, &kbd); if (ret) { puts("ERROR with allocation of kernel bd\n"); goto error; |