diff options
author | Simon Glass | 2016-11-07 08:47:05 -0700 |
---|---|---|
committer | Alexander Graf | 2016-11-14 23:24:03 +0100 |
commit | 5ee31baf813123e2816e55cf2b5aaf604770da8b (patch) | |
tree | 1cd88cfd7207eb0b9bb6940243870abffc4ad752 /cmd/bootefi.c | |
parent | d0d9099365f6658cfc89943b4e08d6436200845f (diff) |
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>
Diffstat (limited to 'cmd/bootefi.c')
-rw-r--r-- | cmd/bootefi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bootefi.c b/cmd/bootefi.c index c8079c4fe81..3ab256ec51f 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); |