]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
dtc: check.c fix compile error
authorShuah Khan <shuahkh@osg.samsung.com>
Tue, 16 May 2017 16:08:08 +0000 (10:08 -0600)
committerRob Herring <robh@kernel.org>
Wed, 17 May 2017 16:12:32 +0000 (11:12 -0500)
commit828d4cdd012c8ffbf76625c3ff164312e8666784
tree71e194ec6c46ba79f11dfd4ba4c53f39aeeaacf9
parentdf3ed932394488e57e72dd0e73c224d1804fdc8f
dtc: check.c fix compile error

Fix the following compile error found on odroid-xu4:

checks.c: In function ‘check_simple_bus_reg’:
checks.c:876:41: error: format ‘%lx’ expects argument of type
‘long unsigned int’, but argument 4 has type
‘uint64_t{aka long long unsigned int}’ [-Werror=format=]
  snprintf(unit_addr, sizeof(unit_addr), "%lx", reg);
                                         ^
checks.c:876:41: error: format ‘%lx’ expects argument of type
‘long unsigned int’, but argument 4 has type
‘uint64_t {aka long long unsigned int}’ [-Werror=format=]
cc1: all warnings being treated as errors
Makefile:304: recipe for target 'checks.o' failed
make: *** [checks.o] Error 1

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
[dwg: Correct new format to be correct in general]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
[robh: cherry-picked from upstream dtc commit 2a42b14d0d03]
Signed-off-by: Rob Herring <robh@kernel.org>
scripts/dtc/checks.c