diff options
author | Tom Rini <trini@konsulko.com> | 2020-02-24 12:50:35 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-03-16 12:49:09 -0400 |
commit | 7a212e56170bcf840d088b48f5010f1456203449 (patch) | |
tree | 99f9aa907a2ad408d98b4273d2a431138a725236 /scripts | |
parent | aacf264bfddb931289ad810bc114e374d20c5762 (diff) | |
download | u-boot-7a212e56170bcf840d088b48f5010f1456203449.tar.gz |
scripts/Makefile.lib: Re-add -Wno-simple_bus_reg to DTC_FLAGS
This exists in Linux Kernel with commit 70523a3ce5ff so put it in the
list of DTC_FLAGS that mirror Linux as we will catch up there.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-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 a8196678b2..63d790e4e2 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -280,6 +280,7 @@ DTC_FLAGS += -Wno-unit_address_vs_reg \ -Wno-unit_address_format \ -Wno-avoid_unnecessary_addr_size \ -Wno-alias_paths \ + -Wno-simple_bus_reg \ -Wno-pci_device_reg # U-Boot specific disables |