Commit 54b4ab3c961a2012a1c2a09c259a6343323ec551

Authored by Jean-Christophe PLAGNIOL-VILLARD
Committed by Wolfgang Denk
1 parent 1d9af0be76

bootm_load_os: fix load_end debug message

print load_end value not pointer

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

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -339,13 +339,13 @@
339 339 return BOOTM_ERR_UNIMPLEMENTED;
340 340 }
341 341 puts ("OK\n");
342   - debug (" kernel loaded at 0x%08lx, end = 0x%8p\n", load, load_end);
  342 + debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
343 343 if (boot_progress)
344 344 show_boot_progress (7);
345 345  
346 346 if ((load < blob_end) && (*load_end > blob_start)) {
347 347 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
348   - debug ("images.os.load = 0x%lx, load_end = 0x%p\n", load, load_end);
  348 + debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
349 349  
350 350 return BOOTM_ERR_OVERLAP;
351 351 }