From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 96F53847A for ; Wed, 1 Mar 2023 18:08:13 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1B818C433EF; Wed, 1 Mar 2023 18:08:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1677694093; bh=AklaDzDDICabuWl4SFjLhZ1lPT9JmGaSK4Gv1Xj2Apg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gLchTKjdtPcz4Rt9SzssvNmb+P+nJNzfUCkaLlrKHSnQfkeCP6nDsIbw7/7cchaEK DJ/LHNYJpCdkNdZ9bx5YLL0jSCKnBbHWfY51IZg6Na9WhZRSQ29RHJebX2g/1Q7e8Z 31p5+35IbN4KsX5xqudY/Q5Pg4z1NsvmChvVi+Rc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Johan Jonker , Heiko Stuebner , Sasha Levin Subject: [PATCH 5.4 02/13] ARM: dts: rockchip: add power-domains property to dp node on rk3288 Date: Wed, 1 Mar 2023 19:07:25 +0100 Message-Id: <20230301180651.261337490@linuxfoundation.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230301180651.177668495@linuxfoundation.org> References: <20230301180651.177668495@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Johan Jonker [ Upstream commit 80422339a75088322b4d3884bd12fa0fe5d11050 ] The clocks in the Rockchip rk3288 DisplayPort node are included in the power-domain@RK3288_PD_VIO logic, but the power-domains property in the dp node is missing, so fix it. Signed-off-by: Johan Jonker Link: https://lore.kernel.org/r/dab85bfb-9f55-86a1-5cd5-7388c43e0ec5@gmail.com Signed-off-by: Heiko Stuebner Signed-off-by: Sasha Levin --- arch/arm/boot/dts/rk3288.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi index 7dcafd0833ba8..3a7d375389d0e 100644 --- a/arch/arm/boot/dts/rk3288.dtsi +++ b/arch/arm/boot/dts/rk3288.dtsi @@ -1188,6 +1188,7 @@ edp: dp@ff970000 { clock-names = "dp", "pclk"; phys = <&edp_phy>; phy-names = "dp"; + power-domains = <&power RK3288_PD_VIO>; resets = <&cru SRST_EDP>; reset-names = "dp"; rockchip,grf = <&grf>; -- 2.39.0