From: Philipp Zabel
Date: Tue, 19 May 2015 14:28:12 +0000 (+0200)
Subject: drm/imx: parallel-display: fix drm_panel support
X-Git-Tag: omap-for-v4.3/fixes-merge-window~233^2~3^2~2
X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=553a59fc8f5d51c3824c0b7d4ca61e780157defa;p=pandora-kernel.git
drm/imx: parallel-display: fix drm_panel support
The parallel-display driver used an undocumented, non-standard property
"fsl,panel" to optionally associate with a drm_panel device. This patch
fixes the driver to use the same OF graph bindings as the LDB driver
instead:
parallel-display {
compatible = "fsl,imx-parallel-display";
...
port@1 {
reg = <1>;
parallel_out: endpoint {
remote_endpoint = <&panel_in>;
};
};
};
panel {
...
port {
panel_in: endpoint {
remote-endpoint = <¶llel_out>;
};
};
};
Signed-off-by: Philipp Zabel
Tested-by: Gary Bisson
---
Reading git-diff-tree failed