diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-04-16 12:16:43 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-05-09 14:11:27 +0200 |
commit | 2e7e6b68924b3ab48e40b197ba72d9dc6d8e4a65 (patch) | |
tree | b5a0364017e8c48e2e19c90b6ddab75cf4733983 | |
parent | ARM: OMAP: add detection of omap5-dss (diff) | |
download | linux-2e7e6b68924b3ab48e40b197ba72d9dc6d8e4a65.tar.xz linux-2e7e6b68924b3ab48e40b197ba72d9dc6d8e4a65.zip |
OMAPDSS: DSS & DISPC DT support for OMAP5
Add omap5 entries to dispc's and dss's of_device_id tables.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/fbdev/omap2/dss/dispc.c | 1 | ||||
-rw-r--r-- | drivers/video/fbdev/omap2/dss/dss.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/fbdev/omap2/dss/dispc.c b/drivers/video/fbdev/omap2/dss/dispc.c index 3f612a0895d3..07db792debc7 100644 --- a/drivers/video/fbdev/omap2/dss/dispc.c +++ b/drivers/video/fbdev/omap2/dss/dispc.c @@ -3830,6 +3830,7 @@ static const struct of_device_id dispc_of_match[] = { { .compatible = "ti,omap2-dispc", }, { .compatible = "ti,omap3-dispc", }, { .compatible = "ti,omap4-dispc", }, + { .compatible = "ti,omap5-dispc", }, {}, }; diff --git a/drivers/video/fbdev/omap2/dss/dss.c b/drivers/video/fbdev/omap2/dss/dss.c index a6ef4c424ffa..6daeb7ed44c6 100644 --- a/drivers/video/fbdev/omap2/dss/dss.c +++ b/drivers/video/fbdev/omap2/dss/dss.c @@ -953,6 +953,7 @@ static const struct of_device_id dss_of_match[] = { { .compatible = "ti,omap2-dss", }, { .compatible = "ti,omap3-dss", }, { .compatible = "ti,omap4-dss", }, + { .compatible = "ti,omap5-dss", }, {}, }; |