Skip to content
Snippets Groups Projects
Commit d09682ef authored by Simon Glass's avatar Simon Glass
Browse files

binman: Disable the no-unit_address_vs_reg warnings


These warnings are not useful for binman tests. Disable them.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 680e3312
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment