From: Simon Glass Date: Mon, 7 Nov 2016 15:47:05 +0000 (-0700) Subject: efi: Fix debug message address format X-Git-Tag: v2017.01-rc1~252^2~18 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5ee31baf813123e2816e55cf2b5aaf604770da8b;p=u-boot efi: Fix debug message address format This should use U-Boot's standard format for hex address. Fix it. Signed-off-by: Simon Glass Signed-off-by: Alexander Graf --- diff --git a/cmd/bootefi.c b/cmd/bootefi.c index c8079c4fe8..3ab256ec51 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -248,7 +248,7 @@ static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) fdt_addr = simple_strtoul(sfdt, NULL, 16); } - printf("## Starting EFI application at 0x%08lx ...\n", addr); + printf("## Starting EFI application at %08lx ...\n", addr); r = do_bootefi_exec((void *)addr, (void*)fdt_addr); printf("## Application terminated, r = %d\n", r);