efi: Fix debug message address format
authorSimon Glass <sjg@chromium.org>
Mon, 7 Nov 2016 15:47:05 +0000 (08:47 -0700)
committerAlexander Graf <agraf@suse.de>
Mon, 14 Nov 2016 22:24:03 +0000 (23:24 +0100)
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>
cmd/bootefi.c

index c8079c4fe81b71dfb74f5fcd74c351ae2fb77f31..3ab256ec51faafc925ca63d2d404c29b77561c89 100644 (file)
@@ -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);