Commit 5ee31baf813123e2816e55cf2b5aaf604770da8b

Authored by Simon Glass
Committed by Alexander Graf
1 parent d0d9099365

efi: Fix debug message address format

This should use U-Boot's standard format for hex address. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Alexander Graf <agraf@suse.de>

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

... ... @@ -248,7 +248,7 @@
248 248 fdt_addr = simple_strtoul(sfdt, NULL, 16);
249 249 }
250 250  
251   - printf("## Starting EFI application at 0x%08lx ...\n", addr);
  251 + printf("## Starting EFI application at %08lx ...\n", addr);
252 252 r = do_bootefi_exec((void *)addr, (void*)fdt_addr);
253 253 printf("## Application terminated, r = %d\n", r);
254 254