aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2014-04-16 06:16:27 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2014-05-09 08:11:27 -0400
commit9a3089481a2ed87517f71e00e8fc0182c604f255 (patch)
tree948413475e2254cd11906025ff848df72c0f6d7c /arch/arm/mach-omap2
parentd6279d4ae18d4248c90dfcf02fa8c579b81ce43b (diff)
ARM: OMAP: add detection of omap5-dss
Add detection of omap5-dss nodes so that the related devices get initialized. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r--arch/arm/mach-omap2/display.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/display.c b/arch/arm/mach-omap2/display.c
index c3f2c66e61f3..98e3c59deeab 100644
--- a/arch/arm/mach-omap2/display.c
+++ b/arch/arm/mach-omap2/display.c
@@ -635,6 +635,10 @@ struct device_node * __init omapdss_find_dss_of_node(void)
635 if (node) 635 if (node)
636 return node; 636 return node;
637 637
638 node = of_find_compatible_node(NULL, NULL, "ti,omap5-dss");
639 if (node)
640 return node;
641
638 return NULL; 642 return NULL;
639} 643}
640 644