]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
arm64: dts: mediatek: mt8183-kukui-jacuzzi: Add ports node for anx7625
authorChen-Yu Tsai <wenst@chromium.org>
Wed, 31 Jan 2024 08:39:29 +0000 (16:39 +0800)
committerAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Thu, 27 Jun 2024 08:10:26 +0000 (10:10 +0200)
The anx7625 binding requires a "ports" node as a container for the
"port" nodes. The jacuzzi dtsi file is missing it.

Add a "ports" node under the anx7625 node, and move the port related
nodes and properties under it.

Fixes: cabc71b08eb5 ("arm64: dts: mt8183: Add kukui-jacuzzi-damu board")
Signed-off-by: Chen-Yu Tsai <wenst@chromium.org>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Link: https://lore.kernel.org/r/20240131083931.3970388-1-wenst@chromium.org
Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi.dtsi

index 7592e3b860377e5239ece9ba038ea49ae8ee0b90..fa4ab4d2899f9b7f866414335b703e6843aa25e7 100644 (file)
                vdd18-supply = <&pp1800_mipibrdg>;
                vdd33-supply = <&vddio_mipibrdg>;
 
-               #address-cells = <1>;
-               #size-cells = <0>;
-               port@0 {
-                       reg = <0>;
+               ports {
+                       #address-cells = <1>;
+                       #size-cells = <0>;
 
-                       anx7625_in: endpoint {
-                               remote-endpoint = <&dsi_out>;
+                       port@0 {
+                               reg = <0>;
+
+                               anx7625_in: endpoint {
+                                       remote-endpoint = <&dsi_out>;
+                               };
                        };
-               };
 
-               port@1 {
-                       reg = <1>;
+                       port@1 {
+                               reg = <1>;
 
-                       anx7625_out: endpoint {
-                               remote-endpoint = <&panel_in>;
+                               anx7625_out: endpoint {
+                                       remote-endpoint = <&panel_in>;
+                               };
                        };
                };