mirror of
https://xff.cz/git/u-boot/
synced 2026-01-06 07:49:17 +01: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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user