mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-16 05:58:49 +00:00
pci: Fix printf format for regions
Correct printf format for unsigned long long is %llx and not %llxx. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
43dad07cd4
commit
c3aea68705
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ static void pciauto_show_region(const char *name, struct pci_region *region)
|
|||
{
|
||||
pciauto_region_init(region);
|
||||
debug("PCI Autoconfig: Bus %s region: [%llx-%llx],\n"
|
||||
"\t\tPhysical Memory [%llx-%llxx]\n", name,
|
||||
"\t\tPhysical Memory [%llx-%llx]\n", name,
|
||||
(unsigned long long)region->bus_start,
|
||||
(unsigned long long)(region->bus_start + region->size - 1),
|
||||
(unsigned long long)region->phys_start,
|
||||
|
|
Loading…
Add table
Reference in a new issue