]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
bootm_load_os: fix load_end debug message
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Tue, 9 Sep 2008 20:18:24 +0000 (22:18 +0200)
committerWolfgang Denk <wd@denx.de>
Tue, 9 Sep 2008 21:38:15 +0000 (23:38 +0200)
print load_end value not pointer

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
common/cmd_bootm.c

index 2b4df80f9908e9f1735a75ab2e3a9b14c5a9edef..9c63e04f279b04efdbc575562e5c876cfbac02f4 100644 (file)
@@ -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;
        }