All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel
@ 2023-03-26 15:57 Krzysztof Kozlowski
  2023-03-26 15:57 ` [PATCH 02/11] arm64: dts: qcom: sc8280xp-lenovo-thinkpad-x13s: use just "port" in panel Krzysztof Kozlowski
                   ` (10 more replies)
  0 siblings, 11 replies; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

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

  sdm845-cheza-r2.dtb: panel: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'

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

diff --git a/arch/arm64/boot/dts/qcom/sdm845-cheza.dtsi b/arch/arm64/boot/dts/qcom/sdm845-cheza.dtsi
index f2b48241d15c..59ad6a8403d2 100644
--- a/arch/arm64/boot/dts/qcom/sdm845-cheza.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdm845-cheza.dtsi
@@ -135,11 +135,9 @@ panel: panel {
 		backlight = <&backlight>;
 		no-hpd;
 
-		ports {
-			panel_in: port {
-				panel_in_edp: endpoint {
-					remote-endpoint = <&sn65dsi86_out>;
-				};
+		panel_in: port {
+			panel_in_edp: endpoint {
+				remote-endpoint = <&sn65dsi86_out>;
 			};
 		};
 	};
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 02/11] arm64: dts: qcom: sc8280xp-lenovo-thinkpad-x13s: use just "port" in panel
  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 ` Krzysztof Kozlowski
  2023-03-26 22:19   ` Dmitry Baryshkov
  2023-03-26 15:57 ` [PATCH 03/11] arm64: dts: qcom: sc8280xp-crd: " Krzysztof Kozlowski
                   ` (9 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

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

  sc8280xp-lenovo-thinkpad-x13s.dtb: panel: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
index 0e7aa7bd9a2c..27371d4c186e 100644
--- a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
+++ b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
@@ -553,11 +553,9 @@ panel {
 			backlight = <&backlight>;
 			power-supply = <&vreg_edp_3p3>;
 
-			ports {
-				port {
-					edp_panel_in: endpoint {
-						remote-endpoint = <&mdss0_dp3_out>;
-					};
+			port {
+				edp_panel_in: endpoint {
+					remote-endpoint = <&mdss0_dp3_out>;
 				};
 			};
 		};
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 03/11] arm64: dts: qcom: sc8280xp-crd: use just "port" in panel
  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 15:57 ` Krzysztof Kozlowski
  2023-03-26 22:19   ` Dmitry Baryshkov
  2023-03-26 15:57 ` [PATCH 04/11] arm64: dts: qcom: sc7180-idp: " Krzysztof Kozlowski
                   ` (8 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

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

  sc8280xp-crd.dtb: panel: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'

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

diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts b/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts
index d7b537284990..6b4e1541ee39 100644
--- a/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts
+++ b/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts
@@ -413,11 +413,9 @@ panel {
 
 			backlight = <&backlight>;
 
-			ports {
-				port {
-					edp_panel_in: endpoint {
-						remote-endpoint = <&mdss0_dp3_out>;
-					};
+			port {
+				edp_panel_in: endpoint {
+					remote-endpoint = <&mdss0_dp3_out>;
 				};
 			};
 		};
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 04/11] arm64: dts: qcom: sc7180-idp: use just "port" in panel
  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 15:57 ` [PATCH 03/11] arm64: dts: qcom: sc8280xp-crd: " Krzysztof Kozlowski
@ 2023-03-26 15:57 ` Krzysztof Kozlowski
  2023-03-26 22:19   ` Dmitry Baryshkov
  2023-03-26 15:57 ` [PATCH 05/11] arm64: dts: qcom: sc7180-trogdor-quackingstick: " Krzysztof Kozlowski
                   ` (7 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

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


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 05/11] arm64: dts: qcom: sc7180-trogdor-quackingstick: use just "port" in panel
  2023-03-26 15:57 [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-03-26 15:57 ` [PATCH 04/11] arm64: dts: qcom: sc7180-idp: " Krzysztof Kozlowski
@ 2023-03-26 15:57 ` 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
                   ` (6 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

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

  sc7180-trogdor-quackingstick-r0.dtb: panel@0: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'

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

diff --git a/arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick.dtsi b/arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick.dtsi
index cb41ccdaccfd..8e7b42f843d4 100644
--- a/arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick.dtsi
@@ -65,14 +65,9 @@ panel: panel@0 {
 		backlight = <&backlight>;
 		rotation = <270>;
 
-		ports {
-			#address-cells = <1>;
-			#size-cells = <0>;
-			port@0 {
-				reg = <0>;
-				panel_in: endpoint {
-					remote-endpoint = <&dsi0_out>;
-				};
+		port {
+			panel_in: endpoint {
+				remote-endpoint = <&dsi0_out>;
 			};
 		};
 	};
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 06/11] arm64: dts: qcom: sc7180-trogdor-wormdingler: use just "port" in panel
  2023-03-26 15:57 [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Krzysztof Kozlowski
                   ` (3 preceding siblings ...)
  2023-03-26 15:57 ` [PATCH 05/11] arm64: dts: qcom: sc7180-trogdor-quackingstick: " Krzysztof Kozlowski
@ 2023-03-26 15:57 ` Krzysztof Kozlowski
  2023-03-27 10:21   ` Dmitry Baryshkov
  2023-03-26 15:57 ` [PATCH 07/11] arm64: dts: qcom: sc7180-qcard: " Krzysztof Kozlowski
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

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

  sc7180-trogdor-wormdingler-rev1-boe.dtb: panel@0: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'

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

diff --git a/arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler.dtsi b/arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler.dtsi
index 9832e752da35..262d6691abd9 100644
--- a/arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler.dtsi
@@ -124,14 +124,9 @@ panel: panel@0 {
 		backlight = <&backlight>;
 		rotation = <270>;
 
-		ports {
-			#address-cells = <1>;
-			#size-cells = <0>;
-			port@0 {
-				reg = <0>;
-				panel_in: endpoint {
-					remote-endpoint = <&dsi0_out>;
-				};
+		port {
+			panel_in: endpoint {
+				remote-endpoint = <&dsi0_out>;
 			};
 		};
 	};
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 07/11] arm64: dts: qcom: sc7180-qcard: use just "port" in panel
  2023-03-26 15:57 [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Krzysztof Kozlowski
                   ` (4 preceding siblings ...)
  2023-03-26 15:57 ` [PATCH 06/11] arm64: dts: qcom: sc7180-trogdor-wormdingler: " Krzysztof Kozlowski
@ 2023-03-26 15:57 ` 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
                   ` (4 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

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

  sc7280-herobrine-zombie-nvme-lte.dtb: panel: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'

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

diff --git a/arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi b/arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi
index 95d9e4a19d76..9137db066d9e 100644
--- a/arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi
@@ -354,14 +354,9 @@ edp_panel: panel {
 
 			backlight = <&pm8350c_pwm_backlight>;
 
-			ports {
-				#address-cells = <1>;
-				#size-cells = <0>;
-				port@0 {
-					reg = <0>;
-					edp_panel_in: endpoint {
-						remote-endpoint = <&mdss_edp_out>;
-					};
+			port {
+				edp_panel_in: endpoint {
+					remote-endpoint = <&mdss_edp_out>;
 				};
 			};
 		};
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 08/11] arm64: dts: qcom: sc7180-trogdor-lazor: correct panel compatible
  2023-03-26 15:57 [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Krzysztof Kozlowski
                   ` (5 preceding siblings ...)
  2023-03-26 15:57 ` [PATCH 07/11] arm64: dts: qcom: sc7180-qcard: " Krzysztof Kozlowski
@ 2023-03-26 15:57 ` 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
                   ` (3 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

innolux,n116bca-ea1 is not exactly compatible witg innolux,n116bge, as
they have their own driver data.  Bindings do not allow fallback:

  sc7180-trogdor-lazor-limozeen-nots-r4.dtb: panel: compatible: ['innolux,n116bca-ea1', 'innolux,n116bge'] is too long

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dts     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dts b/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dts
index 235cda2bba5e..7f01573b5543 100644
--- a/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dts
+++ b/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dts
@@ -23,7 +23,7 @@ / {
 /delete-node/&ap_ts;
 
 &panel {
-	compatible = "innolux,n116bca-ea1", "innolux,n116bge";
+	compatible = "innolux,n116bca-ea1";
 };
 
 &sdhc_2 {
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 09/11] arm64: dts: qcom: sdm845-oneplus: drop invalid panel properties
  2023-03-26 15:57 [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Krzysztof Kozlowski
                   ` (6 preceding siblings ...)
  2023-03-26 15:57 ` [PATCH 08/11] arm64: dts: qcom: sc7180-trogdor-lazor: correct panel compatible Krzysztof Kozlowski
@ 2023-03-26 15:57 ` 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
                   ` (2 subsequent siblings)
  10 siblings, 2 replies; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Panel does not have children with unit-addresses thus address/size-cells
are not valid:

  panel@0: '#address-cells', '#size-cells' do not match any of the regexes: 'pinctrl-[0-9]+'

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi b/arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi
index b01542d79ae2..0c268c560d37 100644
--- a/arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi
@@ -347,8 +347,6 @@ &dsi0 {
 	display_panel: panel@0 {
 		status = "disabled";
 
-		#address-cells = <1>;
-		#size-cells = <0>;
 		reg = <0>;
 
 		vddio-supply = <&vreg_l14a_1p88>;
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 10/11] arm64: dts: qcom: sdm845-xiaomi-beryllium: drop invalid panel properties
  2023-03-26 15:57 [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Krzysztof Kozlowski
                   ` (7 preceding siblings ...)
  2023-03-26 15:57 ` [PATCH 09/11] arm64: dts: qcom: sdm845-oneplus: drop invalid panel properties Krzysztof Kozlowski
@ 2023-03-26 15:57 ` 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-26 22:19 ` [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Dmitry Baryshkov
  10 siblings, 1 reply; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Panel does not have children with unit-addresses thus address/size-cells
are not valid:

  sdm845-xiaomi-beryllium-tianma.dtb: panel@0: Unevaluated properties are not allowed ('#address-cells', '#size-cells' were unexpected)

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-common.dtsi | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-common.dtsi b/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-common.dtsi
index e0fda4d754fe..e444ef1cd742 100644
--- a/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-common.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-common.dtsi
@@ -232,9 +232,6 @@ display_panel: panel@0 {
 		vddpos-supply = <&lab>;
 		vddneg-supply = <&ibb>;
 
-		#address-cells = <1>;
-		#size-cells = <0>;
-
 		backlight = <&pmi8998_wled>;
 		reset-gpios = <&tlmm 6 GPIO_ACTIVE_LOW>;
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 11/11] arm64: dts: qcom: sdm845-xiaomi-beryllium: correct compatible
  2023-03-26 15:57 [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Krzysztof Kozlowski
                   ` (8 preceding siblings ...)
  2023-03-26 15:57 ` [PATCH 10/11] arm64: dts: qcom: sdm845-xiaomi-beryllium: " Krzysztof Kozlowski
@ 2023-03-26 15:57 ` 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
  10 siblings, 1 reply; 23+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-26 15:57 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Tianma FHD panel is supposed to be used with fallback compatible:

  sdm845-xiaomi-beryllium-tianma.dtb: panel@0: compatible: ['tianma,fhd-video'] is too short

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dts b/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dts
index 8e176111e599..e9427851ebaa 100644
--- a/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dts
+++ b/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dts
@@ -10,6 +10,6 @@ / {
 };
 
 &display_panel {
-	compatible = "tianma,fhd-video";
+	compatible = "tianma,fhd-video", "novatek,nt36672a";
 	status = "okay";
 };
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* Re: [PATCH 02/11] arm64: dts: qcom: sc8280xp-lenovo-thinkpad-x13s: use just "port" in panel
  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
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-26 22:19 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

On Sun, 26 Mar 2023 at 18:58, Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The panel bindings expect to have only one port, thus they do not allow
> to use "ports" node:
>
>   sc8280xp-lenovo-thinkpad-x13s.dtb: panel: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

--
With best wishes
Dmitry

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 03/11] arm64: dts: qcom: sc8280xp-crd: use just "port" in panel
  2023-03-26 15:57 ` [PATCH 03/11] arm64: dts: qcom: sc8280xp-crd: " Krzysztof Kozlowski
@ 2023-03-26 22:19   ` Dmitry Baryshkov
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-26 22:19 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

On Sun, 26 Mar 2023 at 18:58, Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The panel bindings expect to have only one port, thus they do not allow
> to use "ports" node:
>
>   sc8280xp-crd.dtb: panel: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  arch/arm64/boot/dts/qcom/sc8280xp-crd.dts | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 04/11] arm64: dts: qcom: sc7180-idp: use just "port" in panel
  2023-03-26 15:57 ` [PATCH 04/11] arm64: dts: qcom: sc7180-idp: " Krzysztof Kozlowski
@ 2023-03-26 22:19   ` Dmitry Baryshkov
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-26 22:19 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

On Sun, 26 Mar 2023 at 18:58, Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> 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(-)
>

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel
  2023-03-26 15:57 [PATCH 01/11] arm64: dts: qcom: sdm845-cheza: use just "port" in Innolux panel Krzysztof Kozlowski
                   ` (9 preceding siblings ...)
  2023-03-26 15:57 ` [PATCH 11/11] arm64: dts: qcom: sdm845-xiaomi-beryllium: correct compatible Krzysztof Kozlowski
@ 2023-03-26 22:19 ` Dmitry Baryshkov
  10 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-26 22:19 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

On Sun, 26 Mar 2023 at 18:58, Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The panel bindings expect to have only one port, thus they do not allow
> to use "ports" node:
>
>   sdm845-cheza-r2.dtb: panel: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  arch/arm64/boot/dts/qcom/sdm845-cheza.dtsi | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 05/11] arm64: dts: qcom: sc7180-trogdor-quackingstick: use just "port" in panel
  2023-03-26 15:57 ` [PATCH 05/11] arm64: dts: qcom: sc7180-trogdor-quackingstick: " Krzysztof Kozlowski
@ 2023-03-27 10:21   ` Dmitry Baryshkov
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-27 10:21 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel

On 26/03/2023 18:57, Krzysztof Kozlowski wrote:
> The panel bindings expect to have only one port, thus they do not allow
> to use "ports" node:
> 
>    sc7180-trogdor-quackingstick-r0.dtb: panel@0: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   .../boot/dts/qcom/sc7180-trogdor-quackingstick.dtsi   | 11 +++--------
>   1 file changed, 3 insertions(+), 8 deletions(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 06/11] arm64: dts: qcom: sc7180-trogdor-wormdingler: use just "port" in panel
  2023-03-26 15:57 ` [PATCH 06/11] arm64: dts: qcom: sc7180-trogdor-wormdingler: " Krzysztof Kozlowski
@ 2023-03-27 10:21   ` Dmitry Baryshkov
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-27 10:21 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel

On 26/03/2023 18:57, Krzysztof Kozlowski wrote:
> The panel bindings expect to have only one port, thus they do not allow
> to use "ports" node:
> 
>    sc7180-trogdor-wormdingler-rev1-boe.dtb: panel@0: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   .../boot/dts/qcom/sc7180-trogdor-wormdingler.dtsi     | 11 +++--------
>   1 file changed, 3 insertions(+), 8 deletions(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 07/11] arm64: dts: qcom: sc7180-qcard: use just "port" in panel
  2023-03-26 15:57 ` [PATCH 07/11] arm64: dts: qcom: sc7180-qcard: " Krzysztof Kozlowski
@ 2023-03-27 10:21   ` Dmitry Baryshkov
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-27 10:21 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel

On 26/03/2023 18:57, Krzysztof Kozlowski wrote:
> The panel bindings expect to have only one port, thus they do not allow
> to use "ports" node:
> 
>    sc7280-herobrine-zombie-nvme-lte.dtb: panel: 'ports' does not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi | 11 +++--------
>   1 file changed, 3 insertions(+), 8 deletions(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 08/11] arm64: dts: qcom: sc7180-trogdor-lazor: correct panel compatible
  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
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-27 10:22 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel

On 26/03/2023 18:57, Krzysztof Kozlowski wrote:
> innolux,n116bca-ea1 is not exactly compatible witg innolux,n116bge, as
> they have their own driver data.  Bindings do not allow fallback:
> 
>    sc7180-trogdor-lazor-limozeen-nots-r4.dtb: panel: compatible: ['innolux,n116bca-ea1', 'innolux,n116bge'] is too long
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   .../boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dts     | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 09/11] arm64: dts: qcom: sdm845-oneplus: drop invalid panel properties
  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
  1 sibling, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-27 10:22 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel

On 26/03/2023 18:57, Krzysztof Kozlowski wrote:
> Panel does not have children with unit-addresses thus address/size-cells
> are not valid:
> 
>    panel@0: '#address-cells', '#size-cells' do not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi | 2 --
>   1 file changed, 2 deletions(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 10/11] arm64: dts: qcom: sdm845-xiaomi-beryllium: drop invalid panel properties
  2023-03-26 15:57 ` [PATCH 10/11] arm64: dts: qcom: sdm845-xiaomi-beryllium: " Krzysztof Kozlowski
@ 2023-03-27 10:22   ` Dmitry Baryshkov
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-27 10:22 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel

On 26/03/2023 18:57, Krzysztof Kozlowski wrote:
> Panel does not have children with unit-addresses thus address/size-cells
> are not valid:
> 
>    sdm845-xiaomi-beryllium-tianma.dtb: panel@0: Unevaluated properties are not allowed ('#address-cells', '#size-cells' were unexpected)
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-common.dtsi | 3 ---
>   1 file changed, 3 deletions(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 11/11] arm64: dts: qcom: sdm845-xiaomi-beryllium: correct compatible
  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
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Baryshkov @ 2023-03-27 10:23 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel

On 26/03/2023 18:57, Krzysztof Kozlowski wrote:
> Tianma FHD panel is supposed to be used with fallback compatible:
> 
>    sdm845-xiaomi-beryllium-tianma.dtb: panel@0: compatible: ['tianma,fhd-video'] is too short
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dts | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH 09/11] arm64: dts: qcom: sdm845-oneplus: drop invalid panel properties
  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
  1 sibling, 0 replies; 23+ messages in thread
From: Caleb Connolly @ 2023-03-28 14:57 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, linux-arm-msm, devicetree,
	linux-kernel



On 26/03/2023 16:57, Krzysztof Kozlowski wrote:
> Panel does not have children with unit-addresses thus address/size-cells
> are not valid:
>
>   panel@0: '#address-cells', '#size-cells' do not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Caleb Connolly <caleb@connolly.tech>
> ---
>  arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi b/arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi
> index b01542d79ae2..0c268c560d37 100644
> --- a/arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi
> @@ -347,8 +347,6 @@ &dsi0 {
>  	display_panel: panel@0 {
>  		status = "disabled";
>
> -		#address-cells = <1>;
> -		#size-cells = <0>;
>  		reg = <0>;
>
>  		vddio-supply = <&vreg_l14a_1p88>;
> --
> 2.34.1
>

--
Kind Regards,
Caleb


^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2023-03-28 14:57 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 ` [PATCH 04/11] arm64: dts: qcom: sc7180-idp: " Krzysztof Kozlowski
2023-03-26 22:19   ` 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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.