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
@ -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…
Reference in New Issue
Block a user