瀏覽代碼

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>
Tomi Valkeinen 11 年之前
父節點
當前提交
9a3089481a
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      arch/arm/mach-omap2/display.c

+ 4 - 0
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;
 }