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=-17.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 985CFC07E95 for ; Tue, 20 Jul 2021 17:29:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7BEA76023B for ; Tue, 20 Jul 2021 17:29:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230169AbhGTQtM (ORCPT ); Tue, 20 Jul 2021 12:49:12 -0400 Received: from mail.kernel.org ([198.145.29.99]:60416 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229627AbhGTQtI (ORCPT ); Tue, 20 Jul 2021 12:49:08 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 1B198600D4; Tue, 20 Jul 2021 17:29:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1626802186; bh=dQ6r/chbOgykjGAd23iEH80jHjtf0Qtrm8TBrM0+oPg=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=h//eQ0MpXU8d/CgDmQfQz/MYnx0cKNqQTcfCM8ar22itSA1O5Xihy6N9/8lEShRGV CJTjqen/MKr8ItMYdZLvn+ywUQE/0hecv0cnC7u6aTluj0N6Q/Y2N30/oxrADheGfa xwhwh3iFezb/QgtPLJO2GM4yFhwyrmtIHX3JrIKpLN2ixAyeEbPyGgJ6X5Urg7gCyl 3j5nu0QbePUvMid8Rx//IkaxcXURUs+D8omSdzFTtDuZzDdBFG3G2Pc926Z67e8R00 ih+1mMj/HyMGlrBg7d3tKVlOe+1nHqGwKtEM5SWpbEgeJC7WvN7bbs4vwwzsVmV6Qp 5UTMzx0/Ymt3A== Subject: Re: [PATCH v3 2/3] dt-bindings: Clean-up OPP binding node names in examples To: Rob Herring , Viresh Kumar , Tony Lindgren Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, =?UTF-8?Q?Beno=c3=aet_Cousson?= , linux-omap@vger.kernel.org, Shawn Guo , Sascha Hauer , Leonard Crestez , dri-devel@lists.freedesktop.org, linux-pm@vger.kernel.org References: <20210720144121.66713-1-robh@kernel.org> <20210720144121.66713-2-robh@kernel.org> From: Georgi Djakov Message-ID: Date: Tue, 20 Jul 2021 20:29:40 +0300 MIME-Version: 1.0 In-Reply-To: <20210720144121.66713-2-robh@kernel.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 20.07.21 17:41, Rob Herring wrote: > In preparation to convert OPP bindings to DT schema, clean-up a few OPP > binding node names in the binding examples. > > Cc: Georgi Djakov > Cc: Shawn Guo > Cc: Sascha Hauer > Cc: Leonard Crestez > Cc: dri-devel@lists.freedesktop.org > Cc: linux-pm@vger.kernel.org > Acked-by: Viresh Kumar > Signed-off-by: Rob Herring Acked-by: Georgi Djakov > --- > Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml | 2 +- > Documentation/devicetree/bindings/gpu/arm,mali-midgard.yaml | 2 +- > .../devicetree/bindings/interconnect/fsl,imx8m-noc.yaml | 4 ++-- > 3 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml b/Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml > index 0f73f436bea7..4bea51d1e7ea 100644 > --- a/Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml > +++ b/Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml > @@ -136,7 +136,7 @@ examples: > resets = <&reset 0>, <&reset 1>; > }; > > - gpu_opp_table: opp_table0 { > + gpu_opp_table: opp-table { > compatible = "operating-points-v2"; > > opp-533000000 { > diff --git a/Documentation/devicetree/bindings/gpu/arm,mali-midgard.yaml b/Documentation/devicetree/bindings/gpu/arm,mali-midgard.yaml > index 696c17aedbbe..d209f272625d 100644 > --- a/Documentation/devicetree/bindings/gpu/arm,mali-midgard.yaml > +++ b/Documentation/devicetree/bindings/gpu/arm,mali-midgard.yaml > @@ -160,7 +160,7 @@ examples: > #cooling-cells = <2>; > }; > > - gpu_opp_table: opp_table0 { > + gpu_opp_table: opp-table { > compatible = "operating-points-v2"; > > opp-533000000 { > diff --git a/Documentation/devicetree/bindings/interconnect/fsl,imx8m-noc.yaml b/Documentation/devicetree/bindings/interconnect/fsl,imx8m-noc.yaml > index a8873739d61a..b8204ed22dd5 100644 > --- a/Documentation/devicetree/bindings/interconnect/fsl,imx8m-noc.yaml > +++ b/Documentation/devicetree/bindings/interconnect/fsl,imx8m-noc.yaml > @@ -81,10 +81,10 @@ examples: > noc_opp_table: opp-table { > compatible = "operating-points-v2"; > > - opp-133M { > + opp-133333333 { > opp-hz = /bits/ 64 <133333333>; > }; > - opp-800M { > + opp-800000000 { > opp-hz = /bits/ 64 <800000000>; > }; > }; >