projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6279d4
)
ARM: OMAP: add detection of omap5-dss
author
Tomi Valkeinen
<tomi.valkeinen@ti.com>
Wed, 16 Apr 2014 10:16:27 +0000
(13:16 +0300)
committer
Tomi Valkeinen
<tomi.valkeinen@ti.com>
Fri, 9 May 2014 12:11:27 +0000
(15:11 +0300)
Add detection of omap5-dss nodes so that the related devices get
initialized.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
arch/arm/mach-omap2/display.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm/mach-omap2/display.c
b/arch/arm/mach-omap2/display.c
index c3f2c66e61f3c4eba6795ed33b41f3fb58cd8990..98e3c59deeab03bd2fd79df7cd18bca9d25e1bac 100644
(file)
--- 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;
}