Skip to content
Snippets Groups Projects
Commit 84d7f916 authored by Simon Glass's avatar Simon Glass
Browse files

pci: Correct cast for sandbox


This gives a warning with some native compilers:

cmd/pci.c:152:11: warning: format ‘%llx’ expects argument of type
   ‘long long unsigned int’, but argument 3 has type
   ‘u64 {aka long unsigned int}’ [-Wformat=]

Fix it with a cast.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent cf2064d7
No related branches found
No related tags found
No related merge requests found
...@@ -150,7 +150,8 @@ int pci_bar_show(struct udevice *dev) ...@@ -150,7 +150,8 @@ int pci_bar_show(struct udevice *dev)
if ((!is_64 && size_low) || (is_64 && size)) { if ((!is_64 && size_low) || (is_64 && size)) {
size = ~size + 1; size = ~size + 1;
printf(" %d %#016llx %#016llx %d %s %s\n", 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", is_io ? "I/O" : "MEM",
prefetchable ? "Prefetchable" : ""); prefetchable ? "Prefetchable" : "");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment