mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +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…
Add table
Reference in a new issue