All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: apq8064: adjust dsi node name to match dt-schema
@ 2021-12-25 13:13 David Heidelberg
  2022-02-01  5:19 ` (subset) " Bjorn Andersson
  0 siblings, 1 reply; 2+ messages in thread
From: David Heidelberg @ 2021-12-25 13:13 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Herring
  Cc: ~okias/devicetree, David Heidelberg, linux-arm-msm, devicetree,
	linux-kernel

Adjust node naming to match requirements from dt-schema.
Also add only and default required PHY name "dsi" to the node.

Fixes warnings generated by `make qcom-apq8064-asus-nexus7-flo.dtb`:
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: mdss_dsi@4700000: $nodename:0: 'mdss_dsi@4700000' does not match '^dsi(@.*)?$'
	From schema: Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml

Signed-off-by: David Heidelberg <david@ixit.cz>
---
 arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dts  | 2 +-
 arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dts | 2 +-
 arch/arm/boot/dts/qcom-apq8064.dtsi                 | 3 ++-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dts b/arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dts
index 03010c4818a5..e02428f5ffb1 100644
--- a/arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dts
@@ -244,7 +244,7 @@ mdp_dsi1_out: endpoint {
 			};
 		};
 
-		dsi0: mdss_dsi@4700000 {
+		dsi0: dsi@4700000 {
 			status = "okay";
 			vdda-supply = <&pm8921_l2>;/*VDD_MIPI1 to 4*/
 			vdd-supply = <&pm8921_l8>;
diff --git a/arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dts b/arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dts
index b1b914a229ce..2f1b8f86e8d9 100644
--- a/arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dts
@@ -345,7 +345,7 @@ mdp_dsi1_out: endpoint {
 		};
 
 
-		dsi0: mdss_dsi@4700000 {
+		dsi0: dsi@4700000 {
 			status = "okay";
 			vdda-supply = <&pm8921_l2>;/*VDD_MIPI1 to 4*/
 			//vdd-supply = <&pm8921_l8>;
diff --git a/arch/arm/boot/dts/qcom-apq8064.dtsi b/arch/arm/boot/dts/qcom-apq8064.dtsi
index 7e623aca224d..5ae14c564c30 100644
--- a/arch/arm/boot/dts/qcom-apq8064.dtsi
+++ b/arch/arm/boot/dts/qcom-apq8064.dtsi
@@ -1239,7 +1239,7 @@ mmss_sfpb: syscon@5700000 {
 			reg = <0x5700000 0x70>;
 		};
 
-		dsi0: mdss_dsi@4700000 {
+		dsi0: dsi@4700000 {
 			compatible = "qcom,mdss-dsi-ctrl";
 			label = "MDSS DSI CTRL->0";
 			#address-cells = <1>;
@@ -1269,6 +1269,7 @@ dsi0: mdss_dsi@4700000 {
 						<&dsi0_phy 1>;
 			syscon-sfpb = <&mmss_sfpb>;
 			phys = <&dsi0_phy>;
+			phy-names = "dsi";
 			ports {
 				#address-cells = <1>;
 				#size-cells = <0>;
-- 
2.34.1


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

* Re: (subset) [PATCH] ARM: dts: apq8064: adjust dsi node name to match dt-schema
  2021-12-25 13:13 [PATCH] ARM: dts: apq8064: adjust dsi node name to match dt-schema David Heidelberg
@ 2022-02-01  5:19 ` Bjorn Andersson
  0 siblings, 0 replies; 2+ messages in thread
From: Bjorn Andersson @ 2022-02-01  5:19 UTC (permalink / raw)
  To: Rob Herring, Andy Gross, David Heidelberg
  Cc: devicetree, ~okias/devicetree, linux-arm-msm, linux-kernel

On Sat, 25 Dec 2021 14:13:56 +0100, David Heidelberg wrote:
> Adjust node naming to match requirements from dt-schema.
> Also add only and default required PHY name "dsi" to the node.
> 
> Fixes warnings generated by `make qcom-apq8064-asus-nexus7-flo.dtb`:
> arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: mdss_dsi@4700000: $nodename:0: 'mdss_dsi@4700000' does not match '^dsi(@.*)?$'
> 	From schema: Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml
> 
> [...]

Applied, thanks!

[1/1] ARM: dts: apq8064: adjust dsi node name to match dt-schema
      commit: af7a84eb9f923f8380a00b2e3a6adf2361e3ee19

Best regards,
-- 
Bjorn Andersson <bjorn.andersson@linaro.org>

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

end of thread, other threads:[~2022-02-01  5:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-25 13:13 [PATCH] ARM: dts: apq8064: adjust dsi node name to match dt-schema David Heidelberg
2022-02-01  5:19 ` (subset) " Bjorn Andersson

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.