diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2021-01-06 16:08:51 +0100 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2021-01-11 04:34:06 +0100 |
commit | 2e0e77e4b82c8ae12a8a835fe84eac2e14b993eb (patch) | |
tree | 78268b1e378e0b33a50e72a39ac41df324bd47f4 /arch/arm/boot/dts/imx6q.dtsi | |
parent | ARM: dts: add Protonic MVT board (diff) | |
download | linux-2e0e77e4b82c8ae12a8a835fe84eac2e14b993eb.tar.xz linux-2e0e77e4b82c8ae12a8a835fe84eac2e14b993eb.zip |
ARM: dts: imx6q(dl): Move 'port' nodes under 'ports' for HDMI encoder
In preparation for the conversion of the DWC HDMI TX device tree
bindings to YAML, move the HDMI encoder's 'port' nodes under a 'ports'
node. The 'ports' node is optional in the OF graph implementation, but
YAML bindings require it.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/imx6q.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx6q.dtsi | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi index 5277e3903291..8d209c1b3ca7 100644 --- a/arch/arm/boot/dts/imx6q.dtsi +++ b/arch/arm/boot/dts/imx6q.dtsi @@ -406,19 +406,21 @@ &hdmi { compatible = "fsl,imx6q-hdmi"; - port@2 { - reg = <2>; + ports { + port@2 { + reg = <2>; - hdmi_mux_2: endpoint { - remote-endpoint = <&ipu2_di0_hdmi>; + hdmi_mux_2: endpoint { + remote-endpoint = <&ipu2_di0_hdmi>; + }; }; - }; - port@3 { - reg = <3>; + port@3 { + reg = <3>; - hdmi_mux_3: endpoint { - remote-endpoint = <&ipu2_di1_hdmi>; + hdmi_mux_3: endpoint { + remote-endpoint = <&ipu2_di1_hdmi>; + }; }; }; }; |