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=-8.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 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 7A985C3A59E for ; Wed, 21 Aug 2019 09:00:53 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 4B3D32332A for ; Wed, 21 Aug 2019 09:00:53 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="WhDIVNt6" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 4B3D32332A Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=verge.net.au Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=XGoFbeS4qjAyP2VHHS/SFlQJxhkpE54MFP0zzn1bbsg=; b=WhDIVNt6slW4FS srwchV+XiFfKqjF2KWqhFdcfGaBQwllyF7sCzrlm3OtiAesoNAzPyz2upyWz3k8ePqKIM3dKlf9Jw BQAZno96GOWjeU50maBwFzRj3fJ6yhsOWRO18PuudoO/1iaw8Ae9EHbAjZqD3WRLiNrWk6Pimyl/S CgWLdcXbarclmxxlg619APZuE3VVbohdwByAsJhD6/5u7iYEEZY/aVhNCIud75szvTIbRZ22O/U7l C0Q2pTdiPprgStxzNnMw2m1DoDh6C1RJtZP1Y/WZZFZaaHZDvMoXzCJApy0tl/0epmRX/jEQQEEtA 8/U3zLodZvkcVx0wTsxA==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92 #3 (Red Hat Linux)) id 1i0MU2-0004Rg-Ih; Wed, 21 Aug 2019 09:00:46 +0000 Received: from kirsty.vergenet.net ([202.4.237.240]) by bombadil.infradead.org with esmtp (Exim 4.92 #3 (Red Hat Linux)) id 1i0MTz-0004RI-3G for linux-arm-kernel@lists.infradead.org; Wed, 21 Aug 2019 09:00:44 +0000 Received: from reginn.horms.nl (watermunt.horms.nl [80.127.179.77]) by kirsty.vergenet.net (Postfix) with ESMTPA id 2CC8325B7C3; Wed, 21 Aug 2019 19:00:42 +1000 (AEST) Received: by reginn.horms.nl (Postfix, from userid 7100) id 162BF9405AE; Wed, 21 Aug 2019 11:00:40 +0200 (CEST) Date: Wed, 21 Aug 2019 11:00:40 +0200 From: Simon Horman To: Yoshihiro Kaneko Subject: Re: [PATCH] arm64: dts: renesas: r8a77970: sort nodes Message-ID: <20190821090039.w7ih27pyup6ijjyl@verge.net.au> References: <1566219393-23169-1-git-send-email-ykaneko0929@gmail.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1566219393-23169-1-git-send-email-ykaneko0929@gmail.com> Organisation: Horms Solutions BV User-Agent: NeoMutt/20170113 (1.7.2) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190821_020043_288917_FFD9554B X-CRM114-Status: GOOD ( 15.61 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-renesas-soc@vger.kernel.org, Magnus Damm , Geert Uytterhoeven , linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, Aug 19, 2019 at 09:56:33PM +0900, Yoshihiro Kaneko wrote: > Sort nodes. > > If node address is present > * Sort by node address, grouping all nodes with the same compat string > and sorting the group alphabetically. > Else > * Sort alphabetically > > This should not have any run-time effect. > > Signed-off-by: Yoshihiro Kaneko Reviewed-by: Simon Horman > --- > > This patch is based on the master branch of Geert Uytterhoeven's renesas-devel > tree. > > arch/arm64/boot/dts/renesas/r8a77970.dtsi | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/arch/arm64/boot/dts/renesas/r8a77970.dtsi b/arch/arm64/boot/dts/renesas/r8a77970.dtsi > index 5b6164d..0cd3b37 100644 > --- a/arch/arm64/boot/dts/renesas/r8a77970.dtsi > +++ b/arch/arm64/boot/dts/renesas/r8a77970.dtsi > @@ -1181,6 +1181,9 @@ > polling-delay = <1000>; > thermal-sensors = <&thermal>; > > + cooling-maps { > + }; > + > trips { > cpu-crit { > temperature = <120000>; > @@ -1188,9 +1191,6 @@ > type = "critical"; > }; > }; > - > - cooling-maps { > - }; > }; > }; > > -- > 1.9.1 > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel