From patchwork Wed Dec 20 09:35:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 10125311 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 16D0A60388 for ; Wed, 20 Dec 2017 09:35:50 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1B1BB28763 for ; Wed, 20 Dec 2017 09:35:50 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0F64C28793; Wed, 20 Dec 2017 09:35:50 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 76B6128763 for ; Wed, 20 Dec 2017 09:35:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753744AbdLTJfr (ORCPT ); Wed, 20 Dec 2017 04:35:47 -0500 Received: from kirsty.vergenet.net ([202.4.237.240]:52990 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754565AbdLTJfm (ORCPT ); Wed, 20 Dec 2017 04:35:42 -0500 Received: from penelope.horms.nl (52D9BC73.cm-11-1c.dynamic.ziggo.nl [82.217.188.115]) by kirsty.vergenet.net (Postfix) with ESMTPA id E628F25BE5D; Wed, 20 Dec 2017 20:35:40 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=verge.net.au; s=mail; t=1513762541; bh=3txwF8LpRtvKQgK/JmFbRuqk76UwWz9VvEXZ/4t0UFs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ee+9ZXZUwQjwbCvOp1lZOU/lKg0zYgPxwQbkN2HbFRiNOtN6pPKJu++AXd4IVp43J kB+gEYCF7Ojx6uMPtIcpqkqBdXRlUWs8hpfzS2kmheYZjAPCK+1qwKOwvSNUvNNnAU G+H/siP4s9731vqgo7BDsOHzo2YtNPEyUo0NG6b0= Received: by penelope.horms.nl (Postfix, from userid 7100) id AE41BE20569; Wed, 20 Dec 2017 10:35:38 +0100 (CET) Date: Wed, 20 Dec 2017 10:35:38 +0100 From: Simon Horman To: Sergei Shtylyov Cc: linux-renesas-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Magnus Damm Subject: Re: [PATCH 1/2] ARM: dts: r8a7792: sort root sub-nodes alphabetically Message-ID: <20171220093538.e5t3ujc5vjoerv5d@verge.net.au> References: <20171218213233.3373-1-horms+renesas@verge.net.au> <20171218213233.3373-2-horms+renesas@verge.net.au> <14c60234-3755-3b06-64fc-e3943d8b5293@cogentembedded.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <14c60234-3755-3b06-64fc-e3943d8b5293@cogentembedded.com> Organisation: Horms Solutions BV User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP On Tue, Dec 19, 2017 at 12:27:48PM +0300, Sergei Shtylyov wrote: > Hello! > > On 12/19/2017 12:32 AM, Simon Horman wrote: > > > Sort root sub-nodes alphabetically for allow for easier maintenance > > s/for/to/? > > > of this file. > > > > Signed-off-by: Simon Horman > > --- > > arch/arm/boot/dts/r8a7792.dtsi | 48 +++++++++++++++++++++--------------------- > > 1 file changed, 24 insertions(+), 24 deletions(-) > > > > diff --git a/arch/arm/boot/dts/r8a7792.dtsi b/arch/arm/boot/dts/r8a7792.dtsi > > index ac05fdb91798..d31258958c36 100644 > > --- a/arch/arm/boot/dts/r8a7792.dtsi > > +++ b/arch/arm/boot/dts/r8a7792.dtsi > > @@ -36,6 +36,22 @@ > > vin5 = &vin5; > > }; > > + /* External root clock */ > > + extal_clk: extal { > > + compatible = "fixed-clock"; > > + #clock-cells = <0>; > > + /* This value must be overridden by the board. */ > > + clock-frequency = <0>; > > + }; > > + > > + /* External CAN clock */ > > + can_clk: can { > > + compatible = "fixed-clock"; > > + #clock-cells = <0>; > > + /* This value must be overridden by the board. */ > > + clock-frequency = <0>; > > + }; > > + > > C predates E in my alphabet. :-) Thanks, I have applied the following: From: Simon Horman Subject: [PATCH] ARM: dts: r8a7792: sort root sub-nodes alphabetically Sort root sub-nodes alphabetically to allow for easier maintenance of this file. Signed-off-by: Simon Horman Reviewed-by: Geert Uytterhoeven --- arch/arm/boot/dts/r8a7792.dtsi | 48 +++++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/arch/arm/boot/dts/r8a7792.dtsi b/arch/arm/boot/dts/r8a7792.dtsi index 7b394273031e..b0013e5fcf47 100644 --- a/arch/arm/boot/dts/r8a7792.dtsi +++ b/arch/arm/boot/dts/r8a7792.dtsi @@ -36,6 +36,14 @@ vin5 = &vin5; }; + /* External CAN clock */ + can_clk: can { + compatible = "fixed-clock"; + #clock-cells = <0>; + /* This value must be overridden by the board. */ + clock-frequency = <0>; + }; + cpus { #address-cells = <1>; #size-cells = <0>; @@ -69,6 +77,22 @@ }; }; + /* External root clock */ + extal_clk: extal { + compatible = "fixed-clock"; + #clock-cells = <0>; + /* This value must be overridden by the board. */ + clock-frequency = <0>; + }; + + /* External SCIF clock */ + scif_clk: scif { + compatible = "fixed-clock"; + #clock-cells = <0>; + /* This value must be overridden by the board. */ + clock-frequency = <0>; + }; + soc { compatible = "simple-bus"; interrupt-parent = <&gic>; @@ -832,28 +856,4 @@ #power-domain-cells = <0>; }; }; - - /* External root clock */ - extal_clk: extal { - compatible = "fixed-clock"; - #clock-cells = <0>; - /* This value must be overridden by the board. */ - clock-frequency = <0>; - }; - - /* External SCIF clock */ - scif_clk: scif { - compatible = "fixed-clock"; - #clock-cells = <0>; - /* This value must be overridden by the board. */ - clock-frequency = <0>; - }; - - /* External CAN clock */ - can_clk: can { - compatible = "fixed-clock"; - #clock-cells = <0>; - /* This value must be overridden by the board. */ - clock-frequency = <0>; - }; };