mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
cmd: booti: fix invalid image address in debug message
With commit6808ef9ac2
("move booti_setup to arch/arm/lig/image.c"), images->ep has not been set at this point. Fixes:6808ef9ac2
("move booti_setup to arch/arm/lig/image.c") Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Bin Chen <bin.chen@linaro.org>
This commit is contained in:
parent
0850d7f7bf
commit
bf14d9a7e1
1 changed files with 1 additions and 2 deletions
|
@ -37,8 +37,7 @@ static int booti_start(cmd_tbl_t *cmdtp, int flag, int argc,
|
|||
load_addr);
|
||||
} else {
|
||||
ld = simple_strtoul(argv[0], NULL, 16);
|
||||
debug("* kernel: cmdline image address = 0x%08lx\n",
|
||||
images->ep);
|
||||
debug("* kernel: cmdline image address = 0x%08lx\n", ld);
|
||||
}
|
||||
|
||||
ret = booti_setup(ld, &relocated_addr, &image_size);
|
||||
|
|
Loading…
Add table
Reference in a new issue