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 82E4013FD94; Thu, 11 Apr 2024 10:22:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712830965; cv=none; b=q2Lyger4kpJwmXJ6m86JiVttfO4gWTiBBtZB7ROwAExC3RYnZ+DypvDS52chjVuCnzbt9AOXVSbM9V607fY0r3Q3GQbGoz0usSrgzgYbqnV0Yzhf1B+p7TRpQdzlfgN7UhzmXoa7TgY7lrHsJ/XmZFdnslpLgVTiGRA1/ajvf64= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712830965; c=relaxed/simple; bh=k9Q5z4jl6U7ax5IP3i3KoRPxSTWHkXHzIbwzHk+AZrY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=tOCaMY3GEDEty8QELiyXZh+6q4eQ5+iZJZwVL/Ar6Z+G/jFWkHwuj6groESaCrURUludImboNFM83udGAVGB+DVyYp9XNkQU9m1oLrxRHMFCpZ4/mOP28dK9FXaMY6UR2aKpk4WvvHl7JsqpShN1RPSMKh7yEdT7CiBFzexlLDg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=mj9l9jD+; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="mj9l9jD+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0A8ABC433C7; Thu, 11 Apr 2024 10:22:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1712830965; bh=k9Q5z4jl6U7ax5IP3i3KoRPxSTWHkXHzIbwzHk+AZrY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mj9l9jD+8FuBfsROT34TnDO41QLVtuVaf44kn8ZYNNoxOfqe6oGQ4H3jRGcAbgMZT Iu0NKG1KNL1GwutNHppdcayRtIynsLWmwnmfXg2TmgUv+Tvq8Qzhl7VLrAeOWeU3FA ISBw85/ijOiSMOkFsZc4G0O97eWSz49Ob3pqhM5w= 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 177/215] arm64: dts: rockchip: fix rk3328 hdmi ports node Date: Thu, 11 Apr 2024 11:56:26 +0200 Message-ID: <20240411095430.190492591@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240411095424.875421572@linuxfoundation.org> References: <20240411095424.875421572@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Johan Jonker [ Upstream commit 1d00ba4700d1e0f88ae70d028d2e17e39078fa1c ] Fix rk3328 hdmi ports node so that it matches the rockchip,dw-hdmi.yaml binding. Signed-off-by: Johan Jonker Link: https://lore.kernel.org/r/e5dea3b7-bf84-4474-9530-cc2da3c41104@gmail.com Signed-off-by: Heiko Stuebner Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/rockchip/rk3328.dtsi | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/rockchip/rk3328.dtsi b/arch/arm64/boot/dts/rockchip/rk3328.dtsi index 6ddb6b8c1fad5..ef45d5607ea1f 100644 --- a/arch/arm64/boot/dts/rockchip/rk3328.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3328.dtsi @@ -684,11 +684,20 @@ hdmi: hdmi@ff3c0000 { status = "disabled"; ports { - hdmi_in: port { + #address-cells = <1>; + #size-cells = <0>; + + hdmi_in: port@0 { + reg = <0>; + hdmi_in_vop: endpoint { remote-endpoint = <&vop_out_hdmi>; }; }; + + hdmi_out: port@1 { + reg = <1>; + }; }; }; -- 2.43.0