projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35fd32d
)
OMAPDSS: DSI: Add OMAP5 DSI module IDs
author
Tomi Valkeinen
<tomi.valkeinen@ti.com>
Fri, 7 Mar 2014 10:44:24 +0000
(12:44 +0200)
committer
Tomi Valkeinen
<tomi.valkeinen@ti.com>
Fri, 9 May 2014 12:11:28 +0000
(15:11 +0300)
Add OMAP5 DSI module ID support to the OMAP DSI driver.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/fbdev/omap2/dss/dsi.c
patch
|
blob
|
history
diff --git
a/drivers/video/fbdev/omap2/dss/dsi.c
b/drivers/video/fbdev/omap2/dss/dsi.c
index 90e0eff8486729ca3019837d4321a51021ca5aec..4755a34a5422f6f6431e07b4a349866e4553dc3c 100644
(file)
--- a/
drivers/video/fbdev/omap2/dss/dsi.c
+++ b/
drivers/video/fbdev/omap2/dss/dsi.c
@@
-5734,9
+5734,16
@@
static const struct dsi_module_id_data dsi_of_data_omap4[] = {
{ },
};
+static const struct dsi_module_id_data dsi_of_data_omap5[] = {
+ { .address = 0x58004000, .id = 0, },
+ { .address = 0x58009000, .id = 1, },
+ { },
+};
+
static const struct of_device_id dsi_of_match[] = {
{ .compatible = "ti,omap3-dsi", .data = dsi_of_data_omap3, },
{ .compatible = "ti,omap4-dsi", .data = dsi_of_data_omap4, },
+ { .compatible = "ti,omap5-dsi", .data = dsi_of_data_omap5, },
{},
};