From patchwork Mon Sep 13 19:28:16 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rob Herring X-Patchwork-Id: 12490681 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-17.0 required=3.0 tests=BAYES_00,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B5795C43219 for ; Mon, 13 Sep 2021 19:28:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A327E610FE for ; Mon, 13 Sep 2021 19:28:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1347571AbhIMT3w (ORCPT ); Mon, 13 Sep 2021 15:29:52 -0400 Received: from mail-oi1-f178.google.com ([209.85.167.178]:41856 "EHLO mail-oi1-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S242654AbhIMT3q (ORCPT ); Mon, 13 Sep 2021 15:29:46 -0400 Received: by mail-oi1-f178.google.com with SMTP id 6so15495649oiy.8; Mon, 13 Sep 2021 12:28:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=/ZKrm3JFwDCEWz9SSMPNs1GsPW3Uuj4ZIMM/IhHhwf8=; b=Wduw/0EMaMASqkqOo3SnTcK5rsEG5hRKHw8sYjd+mVxDFuuRkDG+kQutSC6dxBrvhW xZ5cCwLgR3f6B4/i06fJwp0tF0BqUD9YRhUyYJtteK2YFf60JpThwr5uNvSUk3KTMEzg 0aaMpu5EFLluekqUVxN9Ehik7gFNUkMvyX31QWxuivkPjhAJKo6JSJjus39KSUOC51WZ f/UUPE1pdmFo/OWCngVvgOyRNI1/uKIOaFv8Z4+lfW6SDJAvruah000fTeJllH20Tbnf nGdWc7pT2BFAePFRHEaa10OSPMOLZFHG3sKILukMVukOkATuN8GZHoy77ITBt/VSspn9 E0hw== X-Gm-Message-State: AOAM5306OPJ+/4aTQINE2BnF9weE/ncd9apHl+TAfM/Gz+zDqrYGbcGM GJpm9I2V1HwE9Z6gBf0pMQ== X-Google-Smtp-Source: ABdhPJzGujT8h0f+vj7IE5u1yfIMMd1RcTFZznLmqp9NuLIaVlBthUgGpvpj6x0bLUtKIu66LMo8eg== X-Received: by 2002:a05:6808:b21:: with SMTP id t1mr9025535oij.165.1631561310059; Mon, 13 Sep 2021 12:28:30 -0700 (PDT) Received: from xps15.herring.priv (66-90-148-213.dyn.grandenetworks.net. [66.90.148.213]) by smtp.googlemail.com with ESMTPSA id m24sm1907838oie.50.2021.09.13.12.28.28 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 13 Sep 2021 12:28:29 -0700 (PDT) From: Rob Herring To: Linus Walleij , Stephen Boyd , Pavel Machek Cc: Liviu Dudau , Sudeep Holla , Lorenzo Pieralisi , linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-leds@vger.kernel.org, Michal Marek , Nick Desaulniers , linux-kbuild@vger.kernel.org, Masahiro Yamada Subject: [PATCH v2 8/8] kbuild: Enable dtc 'unit_address_format' warning by default Date: Mon, 13 Sep 2021 14:28:16 -0500 Message-Id: <20210913192816.1225025-9-robh@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210913192816.1225025-1-robh@kernel.org> References: <20210913192816.1225025-1-robh@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org With all the 'unit_address_format' warnings fixed, enable the warning by default. Cc: Michal Marek Cc: Nick Desaulniers Cc: linux-kbuild@vger.kernel.org Acked-by: Masahiro Yamada Signed-off-by: Rob Herring Acked-by: Nick Desaulniers --- scripts/Makefile.lib | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 54582673fc1a..56d50eb0cd80 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -310,7 +310,6 @@ DTC_FLAGS += -Wno-interrupt_provider # Disable noisy checks by default ifeq ($(findstring 1,$(KBUILD_EXTRA_WARN)),) DTC_FLAGS += -Wno-unit_address_vs_reg \ - -Wno-unit_address_format \ -Wno-avoid_unnecessary_addr_size \ -Wno-alias_paths \ -Wno-graph_child_address \