devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Andy Gross <agross@kernel.org>,
	Bjorn Andersson <andersson@kernel.org>,
	Konrad Dybcio <konrad.dybcio@linaro.org>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org
Cc: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Subject: [PATCH 04/11] arm64: dts: qcom: sc7180-idp: use just "port" in panel
Date: Sun, 26 Mar 2023 17:57:46 +0200	[thread overview]
Message-ID: <20230326155753.92007-4-krzysztof.kozlowski@linaro.org> (raw)
In-Reply-To: <20230326155753.92007-1-krzysztof.kozlowski@linaro.org>

The panel bindings expect to have only one port, thus they do not allow
to use "ports" node:

  sc7180-idp.dtb: panel@0: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'
  sc7180-idp.dtb: panel@0: 'port' is a required property

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sc7180-idp.dts | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/sc7180-idp.dts b/arch/arm64/boot/dts/qcom/sc7180-idp.dts
index c3bdd3295c02..fcabbc6a897f 100644
--- a/arch/arm64/boot/dts/qcom/sc7180-idp.dts
+++ b/arch/arm64/boot/dts/qcom/sc7180-idp.dts
@@ -312,14 +312,9 @@ panel@0 {
 
 		reset-gpios = <&pm6150l_gpios 3 GPIO_ACTIVE_HIGH>;
 
-		ports {
-			#address-cells = <1>;
-			#size-cells = <0>;
-			port@0 {
-				reg = <0>;
-				panel0_in: endpoint {
-					remote-endpoint = <&dsi0_out>;
-				};
+		port {
+			panel0_in: endpoint {
+				remote-endpoint = <&dsi0_out>;
 			};
 		};
 	};
-- 
2.34.1


  parent reply	other threads:[~2023-03-26 15:58 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-26 15:57 [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Krzysztof Kozlowski
2023-03-26 15:57 ` [PATCH 02/11] arm64: dts: qcom: sc8280xp-lenovo-thinkpad-x13s: use just "port" in panel Krzysztof Kozlowski
2023-03-26 22:19   ` Dmitry Baryshkov
2023-03-26 15:57 ` [PATCH 03/11] arm64: dts: qcom: sc8280xp-crd: " Krzysztof Kozlowski
2023-03-26 22:19   ` Dmitry Baryshkov
2023-03-26 15:57 ` Krzysztof Kozlowski [this message]
2023-03-26 22:19   ` [PATCH 04/11] arm64: dts: qcom: sc7180-idp: " Dmitry Baryshkov
2023-03-26 15:57 ` [PATCH 05/11] arm64: dts: qcom: sc7180-trogdor-quackingstick: " Krzysztof Kozlowski
2023-03-27 10:21   ` Dmitry Baryshkov
2023-03-26 15:57 ` [PATCH 06/11] arm64: dts: qcom: sc7180-trogdor-wormdingler: " Krzysztof Kozlowski
2023-03-27 10:21   ` Dmitry Baryshkov
2023-03-26 15:57 ` [PATCH 07/11] arm64: dts: qcom: sc7180-qcard: " Krzysztof Kozlowski
2023-03-27 10:21   ` Dmitry Baryshkov
2023-03-26 15:57 ` [PATCH 08/11] arm64: dts: qcom: sc7180-trogdor-lazor: correct panel compatible Krzysztof Kozlowski
2023-03-27 10:22   ` Dmitry Baryshkov
2023-03-26 15:57 ` [PATCH 09/11] arm64: dts: qcom: sdm845-oneplus: drop invalid panel properties Krzysztof Kozlowski
2023-03-27 10:22   ` Dmitry Baryshkov
2023-03-28 14:57   ` Caleb Connolly
2023-03-26 15:57 ` [PATCH 10/11] arm64: dts: qcom: sdm845-xiaomi-beryllium: " Krzysztof Kozlowski
2023-03-27 10:22   ` Dmitry Baryshkov
2023-03-26 15:57 ` [PATCH 11/11] arm64: dts: qcom: sdm845-xiaomi-beryllium: correct compatible Krzysztof Kozlowski
2023-03-27 10:23   ` Dmitry Baryshkov
2023-03-26 22:19 ` [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Dmitry Baryshkov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230326155753.92007-4-krzysztof.kozlowski@linaro.org \
    --to=krzysztof.kozlowski@linaro.org \
    --cc=agross@kernel.org \
    --cc=andersson@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=konrad.dybcio@linaro.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).