Skip to content
Snippets Groups Projects
Commit 5ee31baf authored by Simon Glass's avatar Simon Glass Committed by Alexander Graf
Browse files

efi: Fix debug message address format


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

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
parent d0d90993
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment