diff options
author | Rob Herring <robh@kernel.org> | 2018-05-08 08:59:29 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2018-05-15 11:09:13 -0700 |
commit | 0e6a73b1e6ba59d9fd8d9bffeea1561954de53b4 (patch) | |
tree | 50fdfb42dd167f0a810e01990c492f29d0033bb4 /arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi | |
parent | 60cc43fc888428bb2f18f08997432d426a243338 (diff) | |
download | lwn-0e6a73b1e6ba59d9fd8d9bffeea1561954de53b4.tar.gz lwn-0e6a73b1e6ba59d9fd8d9bffeea1561954de53b4.zip |
ARM: dts: omap: fix OF graph in omap3-devkit8000
omap3-devkit8000-common.dtsi defines a graph connection for DVI, but
then omap3-devkit8000-lcd-common.dtsi overrides that with a graph
connection for the LCD as the same output signals are used. This
leaves an incomplete graph as the TFP410 output has only half a
connection. The result is the following warning:
arch/arm/boot/dts/omap3-devkit8000-lcd70.dtb: Warning (graph_endpoint):
/encoder0/ports/port@0/endpoint: graph connection to node
'/ocp@68000000/dss@48050000/port/endpoint' is not bidirectional
Fix this by defining multiple endpoints which is the correct way to show
a 1 to many connection.
Cc: "Benoît Cousson" <bcousson@baylibre.com>
Cc: Tony Lindgren <tony@atomide.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi')
-rw-r--r-- | arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi b/arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi index 2d64bcffaaa8..1093387259e2 100644 --- a/arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi +++ b/arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi @@ -30,7 +30,10 @@ &dss { port { - dpi_lcd_out: endpoint { + #address-cells = <1>; + #size-cells = <0>; + dpi_lcd_out: endpoint@1 { + reg = <1>; remote-endpoint = <&lcd_in>; data-lines = <24>; }; |