aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorBoris BREZILLON <boris.brezillon@free-electrons.com>2014-05-09 15:53:12 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2014-05-23 13:31:19 +0300
commit80c68c1e2e801a14d718f2ab9690398a864aa37c (patch)
tree60f1ffddbc69b601a5993a5e4c3a1bdd4880e00d /drivers/video
parentvideo: delete unneeded call to platform_get_drvdata (diff)
downloadlinux-dev-80c68c1e2e801a14d718f2ab9690398a864aa37c.tar.xz
linux-dev-80c68c1e2e801a14d718f2ab9690398a864aa37c.zip
video: of: display_timing: fix default native-mode setting
Set native mode to the first child node of the display-timings node and not the first child node of the display-timings parent node. Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/of_display_timing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/of_display_timing.c b/drivers/video/of_display_timing.c
index 3dc93cfacd47..987edf110038 100644
--- a/drivers/video/of_display_timing.c
+++ b/drivers/video/of_display_timing.c
@@ -160,7 +160,7 @@ struct display_timings *of_get_display_timings(struct device_node *np)
entry = of_parse_phandle(timings_np, "native-mode", 0);
/* assume first child as native mode if none provided */
if (!entry)
- entry = of_get_next_child(np, NULL);
+ entry = of_get_next_child(timings_np, NULL);
/* if there is no child, it is useless to go on */
if (!entry) {
pr_err("%s: no timing specifications given\n",