From patchwork Mon Mar 8 16:22:27 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 12122923 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=-18.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham 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 38033C433DB for ; Mon, 8 Mar 2021 16:22:57 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 0E93965229; Mon, 8 Mar 2021 16:22:57 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 2E09E65226; Mon, 8 Mar 2021 16:22:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1615220577; bh=9KKk5ehnWrA7UtNnP6QtrHqBtIqhTlf0+HSb9xqWDLA=; h=From:List-Id:To:Cc:Subject:Date:In-Reply-To:References:From; b=nVaOXJRzdqlB1xBtYSmcxlPTIbfG059YSC4JblxmuIymQ4aUNkRtRQdPgcvVI/PQA C5HZeHa/uRgldMoTk5aohP0ZdOpR9To0qP0xc5NIGhNEkBww1CXCqmaMrfrxq8iAFu Yppar04KoRZe4pUz1etkjEEIbkba42mu+8gxbc9hw+Bp/T8vwjRu4vf4bn+pZ2b3M8 ja4RNtCa6YTWwoR+t6mNOylnSCnPAH69K9ubj/fte8BQEu2+DZffPmmJyuh2f3/SUg z3pETJkquQdAXKKYnPoCCTisKndb47VjoNC1MkaSVTwzT6szOWmYFGiNOpWUsXpUnp gDMN/V/6H2KIw== From: Krzysztof Kozlowski List-Id: To: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, arm@kernel.org, soc@kernel.org, Arnd Bergmann , Olof Johansson Cc: "Paul J. Murphy" , Daniele Alessandrelli , Rob Herring , Krzysztof Kozlowski Subject: [RESEND PATCH 09/10] arm64: dts: intel: socfpga_agilex_socdk: align LED node names with dtschema Date: Mon, 8 Mar 2021 17:22:27 +0100 Message-Id: <20210308162228.62614-10-krzk@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210308162228.62614-1-krzk@kernel.org> References: <20210308162228.62614-1-krzk@kernel.org> MIME-Version: 1.0 Align the LED node names with dtschema to silence dtbs_check warnings like: leds: 'hps0', 'hps1', 'hps2' do not match any of the regexes: '(^led-[0-9a-f]$|led)', 'pinctrl-[0-9]+' Signed-off-by: Krzysztof Kozlowski --- arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts b/arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts index f14a89ca8784..13718ab5ed91 100644 --- a/arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts +++ b/arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts @@ -20,17 +20,17 @@ chosen { leds { compatible = "gpio-leds"; - hps0 { + led0 { label = "hps_led0"; gpios = <&portb 20 GPIO_ACTIVE_HIGH>; }; - hps1 { + led1 { label = "hps_led1"; gpios = <&portb 19 GPIO_ACTIVE_HIGH>; }; - hps2 { + led2 { label = "hps_led2"; gpios = <&portb 21 GPIO_ACTIVE_HIGH>; };