diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-09 22:18:24 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-09-09 23:38:15 +0200 |
commit | 54b4ab3c961a2012a1c2a09c259a6343323ec551 (patch) | |
tree | 825085825ea71dd85a29a1064adf0d59bedc0738 | |
parent | 1d9af0be764960e6cc1c093e97176c3542796820 (diff) | |
download | u-boot-imx-54b4ab3c961a2012a1c2a09c259a6343323ec551.zip u-boot-imx-54b4ab3c961a2012a1c2a09c259a6343323ec551.tar.gz u-boot-imx-54b4ab3c961a2012a1c2a09c259a6343323ec551.tar.bz2 |
bootm_load_os: fix load_end debug message
print load_end value not pointer
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-rw-r--r-- | common/cmd_bootm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 2b4df80..9c63e04 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -339,13 +339,13 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress) return BOOTM_ERR_UNIMPLEMENTED; } puts ("OK\n"); - debug (" kernel loaded at 0x%08lx, end = 0x%8p\n", load, load_end); + debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end); if (boot_progress) show_boot_progress (7); if ((load < blob_end) && (*load_end > blob_start)) { debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end); - debug ("images.os.load = 0x%lx, load_end = 0x%p\n", load, load_end); + debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end); return BOOTM_ERR_OVERLAP; } |