Commit 416196cd authored by Joshua Clayton's avatar Joshua Clayton Committed by Shawn Guo

ARM: dts: imx6: fix dtc warnings for ipu endpoints

When compiled with "W=1", dtc complains: e.g.
"Warning (unit_address_vs_reg):
Node /soc/ipu@02800000/port@2/endpoint@0
has a unit name, but no reg property"

Endpoint nodes don't have a reg property, and the addresses
in their node names are ordinals without any special meaning
so remove them and swap them for semantic node names.
Signed-off-by: default avatarJoshua Clayton <stillcompiling@gmail.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 46350b71
...@@ -154,22 +154,22 @@ ipu2_di0: port@2 { ...@@ -154,22 +154,22 @@ ipu2_di0: port@2 {
#size-cells = <0>; #size-cells = <0>;
reg = <2>; reg = <2>;
ipu2_di0_disp0: endpoint@0 { ipu2_di0_disp0: disp0-endpoint {
}; };
ipu2_di0_hdmi: endpoint@1 { ipu2_di0_hdmi: hdmi-endpoint {
remote-endpoint = <&hdmi_mux_2>; remote-endpoint = <&hdmi_mux_2>;
}; };
ipu2_di0_mipi: endpoint@2 { ipu2_di0_mipi: mipi-endpoint {
remote-endpoint = <&mipi_mux_2>; remote-endpoint = <&mipi_mux_2>;
}; };
ipu2_di0_lvds0: endpoint@3 { ipu2_di0_lvds0: lvds0-endpoint {
remote-endpoint = <&lvds0_mux_2>; remote-endpoint = <&lvds0_mux_2>;
}; };
ipu2_di0_lvds1: endpoint@4 { ipu2_di0_lvds1: lvds1-endpoint {
remote-endpoint = <&lvds1_mux_2>; remote-endpoint = <&lvds1_mux_2>;
}; };
}; };
...@@ -179,19 +179,19 @@ ipu2_di1: port@3 { ...@@ -179,19 +179,19 @@ ipu2_di1: port@3 {
#size-cells = <0>; #size-cells = <0>;
reg = <3>; reg = <3>;
ipu2_di1_hdmi: endpoint@1 { ipu2_di1_hdmi: hdmi-endpoint {
remote-endpoint = <&hdmi_mux_3>; remote-endpoint = <&hdmi_mux_3>;
}; };
ipu2_di1_mipi: endpoint@2 { ipu2_di1_mipi: mipi-endpoint {
remote-endpoint = <&mipi_mux_3>; remote-endpoint = <&mipi_mux_3>;
}; };
ipu2_di1_lvds0: endpoint@3 { ipu2_di1_lvds0: lvds0-endpoint {
remote-endpoint = <&lvds0_mux_3>; remote-endpoint = <&lvds0_mux_3>;
}; };
ipu2_di1_lvds1: endpoint@4 { ipu2_di1_lvds1: lvds1-endpoint {
remote-endpoint = <&lvds1_mux_3>; remote-endpoint = <&lvds1_mux_3>;
}; };
}; };
......
...@@ -1230,22 +1230,22 @@ ipu1_di0: port@2 { ...@@ -1230,22 +1230,22 @@ ipu1_di0: port@2 {
#size-cells = <0>; #size-cells = <0>;
reg = <2>; reg = <2>;
ipu1_di0_disp0: endpoint@0 { ipu1_di0_disp0: disp0-endpoint {
}; };
ipu1_di0_hdmi: endpoint@1 { ipu1_di0_hdmi: hdmi-endpoint {
remote-endpoint = <&hdmi_mux_0>; remote-endpoint = <&hdmi_mux_0>;
}; };
ipu1_di0_mipi: endpoint@2 { ipu1_di0_mipi: mipi-endpoint {
remote-endpoint = <&mipi_mux_0>; remote-endpoint = <&mipi_mux_0>;
}; };
ipu1_di0_lvds0: endpoint@3 { ipu1_di0_lvds0: lvds0-endpoint {
remote-endpoint = <&lvds0_mux_0>; remote-endpoint = <&lvds0_mux_0>;
}; };
ipu1_di0_lvds1: endpoint@4 { ipu1_di0_lvds1: lvds1-endpoint {
remote-endpoint = <&lvds1_mux_0>; remote-endpoint = <&lvds1_mux_0>;
}; };
}; };
...@@ -1255,22 +1255,22 @@ ipu1_di1: port@3 { ...@@ -1255,22 +1255,22 @@ ipu1_di1: port@3 {
#size-cells = <0>; #size-cells = <0>;
reg = <3>; reg = <3>;
ipu1_di0_disp1: endpoint@0 { ipu1_di0_disp1: disp1-endpoint {
}; };
ipu1_di1_hdmi: endpoint@1 { ipu1_di1_hdmi: hdmi-endpoint {
remote-endpoint = <&hdmi_mux_1>; remote-endpoint = <&hdmi_mux_1>;
}; };
ipu1_di1_mipi: endpoint@2 { ipu1_di1_mipi: mipi-endpoint {
remote-endpoint = <&mipi_mux_1>; remote-endpoint = <&mipi_mux_1>;
}; };
ipu1_di1_lvds0: endpoint@3 { ipu1_di1_lvds0: lvds0-endpoint {
remote-endpoint = <&lvds0_mux_1>; remote-endpoint = <&lvds0_mux_1>;
}; };
ipu1_di1_lvds1: endpoint@4 { ipu1_di1_lvds1: lvds1-endpoint {
remote-endpoint = <&lvds1_mux_1>; remote-endpoint = <&lvds1_mux_1>;
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment