1From 5ab48490f03051875ab13d288a4bf32b507d76fd Mon Sep 17 00:00:00 2001
2From: Simon Glass <sjg@chromium.org>
3Date: Sat, 15 Apr 2017 15:39:08 -0600
4Subject: [RFC 2/2] fdt: Correct cast for sandbox in fdtdec_setup_mem_size_base()
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
11lib/fdtdec.c:1203:8: warning: format ‘%llx’ expects argument of type
12   ‘long long unsigned int’, but argument 3 has type
13   ‘long unsigned int’ [-Wformat=]
14
15Fix it with a cast.
16
17Signed-off-by: Simon Glass <sjg@chromium.org>
18Series-to: u-boot
19Series-prefix: RFC
20Series-cc: Stefan Brüns <stefan.bruens@rwth-aachen.de>
21Cover-letter-cc: Lord Mëlchett <clergy@palace.gov>
22Series-version: 3
23Patch-cc: fred
24Series-changes: 4
25- Some changes
26
27Cover-letter:
28test: A test patch series
29This is a test of how the cover
30leter
31works
32END
33---
34 fs/fat/fat.c                | 1 +
35 lib/efi_loader/efi_memory.c | 1 +
36 lib/fdtdec.c                | 3 ++-
37 3 files changed, 4 insertions(+), 1 deletion(-)
38
39diff --git a/fs/fat/fat.c b/fs/fat/fat.c
40index a71bad1..ba169dc 100644
41--- a/fs/fat/fat.c
42+++ b/fs/fat/fat.c
43@@ -1,3 +1,4 @@
44+
45 /*
46  * fat.c
47  *
48diff --git a/lib/efi_loader/efi_memory.c b/lib/efi_loader/efi_memory.c
49index db2ae19..05f75d1 100644
50--- a/lib/efi_loader/efi_memory.c
51+++ b/lib/efi_loader/efi_memory.c
52@@ -1,3 +1,4 @@
53+
54 /*
55  *  EFI application memory management
56  *
57diff --git a/lib/fdtdec.c b/lib/fdtdec.c
58index c072e54..942244f 100644
59--- a/lib/fdtdec.c
60+++ b/lib/fdtdec.c
61@@ -1200,7 +1200,8 @@ int fdtdec_setup_mem_size_base(void)
62 	}
63
64 	gd->ram_size = (phys_size_t)(res.end - res.start + 1);
65-	debug("%s: Initial DRAM size %llx\n", __func__, (u64)gd->ram_size);
66+	debug("%s: Initial DRAM size %llx\n", __func__,
67+	      (unsigned long long)gd->ram_size);
68
69 	return 0;
70 }
71--
722.7.4
73
74