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