From nobody Thu Dec 18 12:51:40 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 33A58C3DA6F for ; Wed, 23 Aug 2023 19:34:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238304AbjHWTdg (ORCPT ); Wed, 23 Aug 2023 15:33:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56854 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238328AbjHWTdN (ORCPT ); Wed, 23 Aug 2023 15:33:13 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 058AF10D7; Wed, 23 Aug 2023 12:33:11 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 85F0464435; Wed, 23 Aug 2023 19:33:10 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B1E36C433C8; Wed, 23 Aug 2023 19:33:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692819189; bh=6pf3VF1Kgo0mcPrrysd6vBhLB10Rq2QlHpXmFT+u/Uk=; h=From:To:Cc:Subject:Date:From; b=qzGbRtFvr9LW4E9nW+OJkavZSGZh8r1RNdCw7rL4R2sexFBX7MOwOh3oRDwz2m84H 2bRrJcHBmYtbebEnm2BE85DD8POPQ+Y9nZ9PerTKxme7xuq17kaoNJbUMC/n1ci82h xiFkQA4OjJGo6+7e1O2Z8O7OXwfsoU+qDxNSh7v/+MGEb4lYdLgKdUtlESBnCdnG9p oy4TFVee+wio54v6uIrDgx06HNGS7w5aLtqRh70q7NEofT0QbqWmZalu85aIJUBsgD IVFIsx95GJDlQyc/k7anq1tggB4qLl3+d0rE7n2z9bMhtSAEPUekx/Pcdp8zbL0fFj w+CvQV+sDEWZQ== Received: (nullmailer pid 2759435 invoked by uid 1000); Wed, 23 Aug 2023 19:33:07 -0000 From: Rob Herring To: Krzysztof Kozlowski , Conor Dooley , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org Subject: [PATCH] arm64: dts: allwinner: h5/h6: Drop spurious 'clock-latency-ns' properties Date: Wed, 23 Aug 2023 14:32:27 -0500 Message-Id: <20230823193239.2758505-1-robh@kernel.org> X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" 'clock-latency-ns' is not a valid property for CPU nodes. It belongs in OPP table (which has it). Drop them from the CPU nodes. Signed-off-by: Rob Herring Acked-by: Jernej Skrabec --- arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi | 4 ---- arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi | 4 ---- 2 files changed, 8 deletions(-) diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi b/arch/arm64/boot= /dts/allwinner/sun50i-h5.dtsi index a56fae761a1f..939f1c0a5eaa 100644 --- a/arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi +++ b/arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi @@ -16,7 +16,6 @@ cpu0: cpu@0 { reg =3D <0>; enable-method =3D "psci"; clocks =3D <&ccu CLK_CPUX>; - clock-latency-ns =3D <244144>; /* 8 32k periods */ #cooling-cells =3D <2>; }; =20 @@ -26,7 +25,6 @@ cpu1: cpu@1 { reg =3D <1>; enable-method =3D "psci"; clocks =3D <&ccu CLK_CPUX>; - clock-latency-ns =3D <244144>; /* 8 32k periods */ #cooling-cells =3D <2>; }; =20 @@ -36,7 +34,6 @@ cpu2: cpu@2 { reg =3D <2>; enable-method =3D "psci"; clocks =3D <&ccu CLK_CPUX>; - clock-latency-ns =3D <244144>; /* 8 32k periods */ #cooling-cells =3D <2>; }; =20 @@ -46,7 +43,6 @@ cpu3: cpu@3 { reg =3D <3>; enable-method =3D "psci"; clocks =3D <&ccu CLK_CPUX>; - clock-latency-ns =3D <244144>; /* 8 32k periods */ #cooling-cells =3D <2>; }; }; diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi b/arch/arm64/boot= /dts/allwinner/sun50i-h6.dtsi index ca1d287a0a01..3b56beed6fee 100644 --- a/arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi +++ b/arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi @@ -27,7 +27,6 @@ cpu0: cpu@0 { reg =3D <0>; enable-method =3D "psci"; clocks =3D <&ccu CLK_CPUX>; - clock-latency-ns =3D <244144>; /* 8 32k periods */ #cooling-cells =3D <2>; }; =20 @@ -37,7 +36,6 @@ cpu1: cpu@1 { reg =3D <1>; enable-method =3D "psci"; clocks =3D <&ccu CLK_CPUX>; - clock-latency-ns =3D <244144>; /* 8 32k periods */ #cooling-cells =3D <2>; }; =20 @@ -47,7 +45,6 @@ cpu2: cpu@2 { reg =3D <2>; enable-method =3D "psci"; clocks =3D <&ccu CLK_CPUX>; - clock-latency-ns =3D <244144>; /* 8 32k periods */ #cooling-cells =3D <2>; }; =20 @@ -57,7 +54,6 @@ cpu3: cpu@3 { reg =3D <3>; enable-method =3D "psci"; clocks =3D <&ccu CLK_CPUX>; - clock-latency-ns =3D <244144>; /* 8 32k periods */ #cooling-cells =3D <2>; }; }; --=20 2.40.1