diff options
author | Rob Herring <robh@kernel.org> | 2018-11-28 19:11:50 -0600 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2018-11-30 09:03:54 -0600 |
commit | 70523a3ce5ff928faa43bb2cad554dc63438e3e7 (patch) | |
tree | 85e67a660a761941d598594f27b0988997d7ecfc /scripts/Makefile.lib | |
parent | c2e7075ca83036317cee4a564729eb82a5433169 (diff) | |
download | talos-obmc-linux-70523a3ce5ff928faa43bb2cad554dc63438e3e7.tar.gz talos-obmc-linux-70523a3ce5ff928faa43bb2cad554dc63438e3e7.zip |
kbuild: disable dtc simple_bus_reg warnings by default
The updated version of dtc has a bug fix for simple_bus_reg warnings
and lots of warnings are generated now. So disable this warning by
default.
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'scripts/Makefile.lib')
-rw-r--r-- | scripts/Makefile.lib | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 8fe4468f9bda..46342f0198f6 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -252,6 +252,7 @@ DTC_FLAGS += -Wno-unit_address_vs_reg \ -Wno-alias_paths \ -Wno-graph_child_address \ -Wno-graph_port \ + -Wno-simple_bus_reg \ -Wno-unique_unit_address \ -Wno-pci_device_reg endif |