From: Simon Glass Date: Mon, 13 Nov 2017 04:52:09 +0000 (-0700) Subject: binman: Disable the no-unit_address_vs_reg warnings X-Git-Tag: v2018.01-rc1~69^2~16 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d09682ef8cbbbf29a41f237298ee1e4dbd71e999;p=u-boot binman: Disable the no-unit_address_vs_reg warnings These warnings are not useful for binman tests. Disable them. Signed-off-by: Simon Glass --- diff --git a/tools/dtoc/fdt_util.py b/tools/dtoc/fdt_util.py index 338d47a5e1..ba0b6cc381 100644 --- 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)