diff options
author | Tom Rini <trini@konsulko.com> | 2020-02-24 12:50:34 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-03-16 12:49:09 -0400 |
commit | aacf264bfddb931289ad810bc114e374d20c5762 (patch) | |
tree | 1bbef26b82e4aaae74ebf779278ee25815dca51e /scripts/Makefile.lib | |
parent | e0d1a89a5baec862a71384f7ddeebdf9d9c4ec63 (diff) |
scripts/Makefile.lib: Restore PCI related warnings to DTC_FLAGS
While we are working on correcting usage related to the pci_bridge and
pci_device_bus_num warnings, disable these flags for now.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/Makefile.lib')
-rw-r--r-- | scripts/Makefile.lib | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index bfb5851e9b..a8196678b2 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -281,6 +281,10 @@ DTC_FLAGS += -Wno-unit_address_vs_reg \ -Wno-avoid_unnecessary_addr_size \ -Wno-alias_paths \ -Wno-pci_device_reg + +# U-Boot specific disables +DTC_FLAGS += -Wno-pci_bridge \ + -Wno-pci_device_bus_num endif ifneq ($(findstring 2,$(KBUILD_ENABLE_EXTRA_GCC_CHECKS)),) |