From 9a3089481a2ed87517f71e00e8fc0182c604f255 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Wed, 16 Apr 2014 13:16:27 +0300 Subject: [PATCH] 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 --- arch/arm/mach-omap2/display.c | 4 ++++ 1 file changed, 4 insertions(+) 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) if (node) return node; + node = of_find_compatible_node(NULL, NULL, "ti,omap5-dss"); + if (node) + return node; + return NULL; } -- 2.34.1