From nobody Wed Dec 17 04:09:28 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 10E8CC32771 for ; Mon, 26 Sep 2022 12:06:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239187AbiIZMGf (ORCPT ); Mon, 26 Sep 2022 08:06:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56072 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239174AbiIZMCy (ORCPT ); Mon, 26 Sep 2022 08:02:54 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D12577C30A; Mon, 26 Sep 2022 03:53:49 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id E7E1160C56; Mon, 26 Sep 2022 10:45:19 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id EFB28C43470; Mon, 26 Sep 2022 10:45:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1664189119; bh=oi9YcisUecQI4iYkSf9P0Q/7KofFYtJRWLWhXsZagAY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=M7Yk0HDHcnEHO8vom1CNHV0xXxSt2Co4i25+krbNxLL2cv/OLLwgUok7FTeov9hFJ V+FTwRLU8XiI/OXqCndY/UIDW6kXbzl+/OQlLts2siA/PESC8GyPPFOBuwzJC1FTOI oyeeiB67qq3R3cauWFkMJNNH56bc49s0XKv8rFBY= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Peng Fan , Shawn Guo , Sasha Levin Subject: [PATCH 5.19 080/207] arm64: dts: imx8ulp: add #reset-cells for pcc Date: Mon, 26 Sep 2022 12:11:09 +0200 Message-Id: <20220926100810.162682338@linuxfoundation.org> X-Mailer: git-send-email 2.37.3 In-Reply-To: <20220926100806.522017616@linuxfoundation.org> References: <20220926100806.522017616@linuxfoundation.org> User-Agent: quilt/0.67 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" From: Peng Fan [ Upstream commit 5fa383a25fd8a16a73485c90da4e3e33a78b45cf ] The binding file clock/imx8ulp-pcc-clock.yaml indicates '#reset-cells' is a required property, add it. Fixes: fe6291e96313 ("arm64: dts: imx8ulp: Add the basic dtsi file for imx8= ulp") Signed-off-by: Peng Fan Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/freescale/imx8ulp.dtsi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm64/boot/dts/freescale/imx8ulp.dtsi b/arch/arm64/boot/d= ts/freescale/imx8ulp.dtsi index 09f7364dd1d0..1cd389b1b95d 100644 --- a/arch/arm64/boot/dts/freescale/imx8ulp.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8ulp.dtsi @@ -172,6 +172,7 @@ pcc3: clock-controller@292d0000 { compatible =3D "fsl,imx8ulp-pcc3"; reg =3D <0x292d0000 0x10000>; #clock-cells =3D <1>; + #reset-cells =3D <1>; }; =20 tpm5: tpm@29340000 { @@ -270,6 +271,7 @@ pcc4: clock-controller@29800000 { compatible =3D "fsl,imx8ulp-pcc4"; reg =3D <0x29800000 0x10000>; #clock-cells =3D <1>; + #reset-cells =3D <1>; }; =20 lpi2c6: i2c@29840000 { @@ -414,6 +416,7 @@ pcc5: clock-controller@2da70000 { compatible =3D "fsl,imx8ulp-pcc5"; reg =3D <0x2da70000 0x10000>; #clock-cells =3D <1>; + #reset-cells =3D <1>; }; }; =20 --=20 2.35.1