projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
680e331
)
binman: Disable the no-unit_address_vs_reg warnings
author
Simon Glass
<sjg@chromium.org>
Mon, 13 Nov 2017 04:52:09 +0000
(21:52 -0700)
committer
Simon Glass
<sjg@chromium.org>
Thu, 23 Nov 2017 01:05:38 +0000
(18:05 -0700)
These warnings are not useful for binman tests. Disable them.
Signed-off-by: Simon Glass <sjg@chromium.org>
tools/dtoc/fdt_util.py
patch
|
blob
|
history
diff --git
a/tools/dtoc/fdt_util.py
b/tools/dtoc/fdt_util.py
index
338d47a
..
ba0b6cc
100644
(file)
--- a/
tools/dtoc/fdt_util.py
+++ b/
tools/dtoc/fdt_util.py
@@
-75,7
+75,8
@@
def EnsureCompiled(fname):
search_list = []
for path in search_paths:
search_list.extend(['-i', path])
- args = ['-I', 'dts', '-o', dtb_output, '-O', 'dtb']
+ args = ['-I', 'dts', '-o', dtb_output, '-O', 'dtb',
+ '-W', 'no-unit_address_vs_reg']
args.extend(search_list)
args.append(dts_input)
command.Run('dtc', *args)