1From b9da5f937bd5ea4931ea17459bf79b2905d9594d Mon Sep 17 00:00:00 2001
2From: Simon Glass <sjg@chromium.org>
3Date: Sat, 15 Apr 2017 15:39:08 -0600
4Subject: [RFC 1/2] pci: Correct cast for sandbox
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9This gives a warning with some native compilers:
10
11cmd/pci.c:152:11: warning: format ‘%llx’ expects argument of type
12   ‘long long unsigned int’, but argument 3 has type
13   ‘u64 {aka long unsigned int}’ [-Wformat=]
14
15Fix it with a cast.
16
17Signed-off-by: Simon Glass <sjg@chromium.org>
18Commit-changes: 2
19- Changes only for this commit
20
21Series-notes:
22some notes
23about some things
24from the first commit
25END
26
27Commit-notes:
28Some notes about
29the first commit
30END
31---
32 cmd/pci.c | 3 ++-
33 1 file changed, 2 insertions(+), 1 deletion(-)
34
35diff --git a/cmd/pci.c b/cmd/pci.c
36index 41b4fff..fe27b4f 100644
37--- a/cmd/pci.c
38+++ b/cmd/pci.c
39@@ -150,7 +150,8 @@ int pci_bar_show(struct udevice *dev)
40 		if ((!is_64 && size_low) || (is_64 && size)) {
41 			size = ~size + 1;
42 			printf(" %d   %#016llx  %#016llx  %d     %s   %s\n",
43-			       bar_id, base, size, is_64 ? 64 : 32,
44+			       bar_id, (unsigned long long)base,
45+			       (unsigned long long)size, is_64 ? 64 : 32,
46 			       is_io ? "I/O" : "MEM",
47 			       prefetchable ? "Prefetchable" : "");
48 		}
49--
502.7.4
51
52