From 87515749e3c33a9167bb9c5d880cd5531d312eea Mon Sep 17 00:00:00 2001 From: Bruno Martins Date: Tue, 2 Apr 2019 13:33:00 +0100 Subject: [PATCH] scripts: Silent gpios_property dtc warnings by default While some of the "Missing property #gpio-cells" warnings are definitely due to Xiaomi's DT, a few others seem related to Qualcomm's. It is insane to fix them all, so just ignore. If needed, can be re-enabled by building with 'W=1'. Change-Id: I3579cc6d8d77d86f65d3ba864845e54fac9ae19c --- scripts/Makefile.lib | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 332cdea271f1..fca738029ffe 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -284,6 +284,7 @@ DTC_FLAGS += -Wno-unit_address_vs_reg \ -Wno-unit_address_format \ -Wno-avoid_unnecessary_addr_size \ -Wno-alias_paths \ + -Wno-gpios_property \ -Wno-graph_child_address \ -Wno-graph_port \ -Wno-unique_unit_address \