diff options
author | Rob Herring <robh@kernel.org> | 2018-05-08 08:59:27 -0500 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2018-05-14 22:08:06 +0800 |
commit | 77dd4bd0c0db8e4856e7abc2192f126e226e14c5 (patch) | |
tree | f758610c38fbdb6eb0e79ab1374f20a399880be5 /arch/arm/boot/dts/imx53.dtsi | |
parent | f457be7700b8c40b16f534cc9926fe3b68ddc5d6 (diff) | |
download | lwn-77dd4bd0c0db8e4856e7abc2192f126e226e14c5.tar.gz lwn-77dd4bd0c0db8e4856e7abc2192f126e226e14c5.zip |
ARM: dts: imx53: Fix LDB OF graph warning
Single child nodes in OF graph don't need an address and now dtc will
warn about this:
Warning (graph_child_address): /soc/aips@50000000/ldb@53fa8008/lvds-channel@0: graph node has single child node 'port@0', #address-cells/#size-cells are not necessary
Since the LDB should always have an output port, fix the warning by
adding the output port, 2, to the DT.
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Pengutronix Kernel Team <kernel@pengutronix.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/imx53.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx53.dtsi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx53.dtsi b/arch/arm/boot/dts/imx53.dtsi index d0db80150db7..fd4ddb989cf8 100644 --- a/arch/arm/boot/dts/imx53.dtsi +++ b/arch/arm/boot/dts/imx53.dtsi @@ -485,6 +485,10 @@ remote-endpoint = <&ipu_di0_lvds0>; }; }; + + port@2 { + reg = <2>; + }; }; lvds-channel@1 { @@ -500,6 +504,10 @@ remote-endpoint = <&ipu_di1_lvds1>; }; }; + + port@2 { + reg = <2>; + }; }; }; |