summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-05-27 13:38:12 (GMT)
committerSimon Glass <sjg@chromium.org>2017-06-02 16:16:46 (GMT)
commit84d7f9168b14a5a822cf0511a8ab1f7788a4d38b (patch)
tree60e523fb72587b4d55fc920ff215a5c89c265dd8 /cmd
parentcf2064d7851a8d43ebaa55d356b768bfa5c8aebe (diff)
downloadu-boot-84d7f9168b14a5a822cf0511a8ab1f7788a4d38b.tar.xz
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: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/pci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/pci.c b/cmd/pci.c
index 41b4fff..fe27b4f 100644
--- 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" : "");
}