mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
arm64: zynqmp: Print multiboot reg in decimal
It is better to print multiboot value in decimal because boot images are also composed in decimal not in hex. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
39c5cf0e70
commit
3ccea69fc4
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ static int multi_boot(void)
|
|||
|
||||
multiboot = readl(&csu_base->multi_boot);
|
||||
|
||||
printf("Multiboot:\t%x\n", multiboot);
|
||||
printf("Multiboot:\t%d\n", multiboot);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue