]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - cmd/pci.c
Merge git://git.denx.de/u-boot-usb
[people/ms/u-boot.git] / cmd / pci.c
index 41b4fffcf9e42b7dd28fd7ee9e8b366bf52b0067..fe27b4f761ad9310a00ceeb837a5b3f352a59fb6 100644 (file)
--- a/cmd/pci.c
+++ b/cmd/pci.c
@@ -150,7 +150,8 @@ int pci_bar_show(struct udevice *dev)
                if ((!is_64 && size_low) || (is_64 && size)) {
                        size = ~size + 1;
                        printf(" %d   %#016llx  %#016llx  %d     %s   %s\n",
-                              bar_id, base, size, is_64 ? 64 : 32,
+                              bar_id, (unsigned long long)base,
+                              (unsigned long long)size, is_64 ? 64 : 32,
                               is_io ? "I/O" : "MEM",
                               prefetchable ? "Prefetchable" : "");
                }