diff options
author | Rob Herring <robh@kernel.org> | 2018-11-29 04:11:50 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-13 10:52:18 +0300 |
commit | 5db05cf0f6e698c11bc7dbfc0f31fb0bb23c458e (patch) | |
tree | 1a4155409578addc7b343c30ae431f1ac4ade9c1 /scripts/Makefile.lib | |
parent | 82df606be888193dc7bbfb29e9fc624feb05500f (diff) | |
download | linux-5db05cf0f6e698c11bc7dbfc0f31fb0bb23c458e.tar.xz |
kbuild: disable dtc simple_bus_reg warnings by default
[ Upstream commit 70523a3ce5ff928faa43bb2cad554dc63438e3e7 ]
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>
Signed-off-by: Sasha Levin <sashal@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 61e596650ed3..a232741e3fd3 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 |