mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 14:56:59 +00:00
imx: ahab: Fix compiler warnings in printf
arch/arm/mach-imx/imx8/ahab.c:110:63: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘u64 {aka long long unsigned int}’ [-Wformat=] Fix those by using %llx Signed-off-by: Oliver Graute <oliver.graute@kococonnector.com> Cc: Stefano Babic <sbabic@denx.de> Cc: uboot-imx <uboot-imx@nxp.com>
This commit is contained in:
parent
61eb1fe568
commit
f4433e7f27
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ int authenticate_os_container(ulong addr)
|
|||
/* Find the memreg and set permission for seco pt */
|
||||
err = sc_rm_find_memreg(-1, &mr, s, e);
|
||||
if (err) {
|
||||
printf("Error: can't find memreg for image load address 0x%x, error %d\n", img->dst, err);
|
||||
printf("Error: can't find memreg for image load address 0x%llx, error %d\n", img->dst, err);
|
||||
ret = -ENOMEM;
|
||||
goto exit;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue