Skip to content
Snippets Groups Projects
Commit 54b4ab3c authored by Jean-Christophe PLAGNIOL-VILLARD's avatar Jean-Christophe PLAGNIOL-VILLARD Committed by Wolfgang Denk
Browse files

bootm_load_os: fix load_end debug message


print load_end value not pointer

Signed-off-by: default avatarJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
parent 1d9af0be
No related branches found
No related tags found
No related merge requests found
...@@ -339,13 +339,13 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress) ...@@ -339,13 +339,13 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
return BOOTM_ERR_UNIMPLEMENTED; return BOOTM_ERR_UNIMPLEMENTED;
} }
puts ("OK\n"); 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) if (boot_progress)
show_boot_progress (7); show_boot_progress (7);
if ((load < blob_end) && (*load_end > blob_start)) { 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.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; return BOOTM_ERR_OVERLAP;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment