From mboxrd@z Thu Jan 1 00:00:00 1970 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=-13.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,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 9956BC4741F for ; Mon, 28 Sep 2020 18:45:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 59F96208D5 for ; Mon, 28 Sep 2020 18:45:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601318724; bh=+1kWXGqPRWewGw6lgPlIyrOjL10V4xjvWu8IzX1LIlk=; h=From:To:Cc:Subject:Date:List-ID:From; b=UahL6rR7pFwxDhY6uUM42L2v65VZA7iIUGh/BPgv+8XHUd4y+P8T4RqyUfkdO1CyV Gknzrn6HekO0axXIHKCMDxLgtAGzJ1WNuX+u3OX2uyCCgmRCrX8zm8o0obPci1uIh0 36++02t9RYWamgzfRRk+krZkGNgnTTl7Viv67aZo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726393AbgI1SpX (ORCPT ); Mon, 28 Sep 2020 14:45:23 -0400 Received: from mail.kernel.org ([198.145.29.99]:51100 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726328AbgI1SpX (ORCPT ); Mon, 28 Sep 2020 14:45:23 -0400 Received: from localhost.localdomain (unknown [194.230.155.194]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 33B43207D8; Mon, 28 Sep 2020 18:45:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601318723; bh=+1kWXGqPRWewGw6lgPlIyrOjL10V4xjvWu8IzX1LIlk=; h=From:To:Cc:Subject:Date:From; b=efEWLNn4rPrhOp6tVuPG4+q45becCK0nLjT6CPN559S1Idx92p43RcMkJ2aMD5Ju3 1YtN0h4u0AEYGmNvL5mKyDEYxKtHyH+JsyLthxIujbHc7a9K2Rttbrgvr+OrYOj/Cy KHFbmm1iuiKlGY/a1l8cwXsSLIxGio0NvaYiXEVY= From: Krzysztof Kozlowski To: Geert Uytterhoeven , Linus Walleij , Rob Herring , linux-renesas-soc@vger.kernel.org, linux-gpio@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski Subject: [PATCH] dt-bindings: pinctrl: renesas,pfc: align example GPIO hog name with dtschema Date: Mon, 28 Sep 2020 20:45:15 +0200 Message-Id: <20200928184515.7345-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org The convention for node names is to use hyphens, not underscores. dtschema expects GPIO hogs to end with 'hog' suffix. Adjust the example DTS in the binding. No changes to binding itself. Reported-by: Rob Herring Signed-off-by: Krzysztof Kozlowski --- Documentation/devicetree/bindings/pinctrl/renesas,pfc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/pinctrl/renesas,pfc.yaml b/Documentation/devicetree/bindings/pinctrl/renesas,pfc.yaml index 4efe117550bd..5b5b1b9d2ec7 100644 --- a/Documentation/devicetree/bindings/pinctrl/renesas,pfc.yaml +++ b/Documentation/devicetree/bindings/pinctrl/renesas,pfc.yaml @@ -148,7 +148,7 @@ examples: <&irqpin3 4 0>, <&irqpin3 5 0>, <&irqpin3 6 0>, <&irqpin3 7 0>; power-domains = <&pd_c5>; - lcd0_mux { + lcd0-mux-hog { /* DBGMD/LCDC0/FSIA MUX */ gpio-hog; gpios = <176 0>; -- 2.17.1