diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-10-24 05:39:53 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-12-07 10:05:56 -0500 |
commit | bb39813413db782cc77b94d55cb5d044f42079df (patch) | |
tree | 76cd7a0e4654570506682ea0c533be03e0b73bb9 /drivers/video/omap2/dss/Makefile | |
parent | 1550202d4a7593655a2aca99e39a58751073c92a (diff) |
OMAPDSS: move blocking mgr enable/disable to compat layer
dispc_mgr_enable_sync and dispc_mgr_disable_sync are only used with the
compat mode. Non-compat will use the simpler enable and disable
functions.
This patch moves the synchronous enable/disable code to the compat
layer. A new file is created, dispc-compat.c, which contains low level
dispc compat code (versus apply.c, which contains slightly higher level
compat code).
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/Makefile')
-rw-r--r-- | drivers/video/omap2/dss/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/Makefile b/drivers/video/omap2/dss/Makefile index af866d0b7942..c834f9c42008 100644 --- a/drivers/video/omap2/dss/Makefile +++ b/drivers/video/omap2/dss/Makefile | |||
@@ -1,7 +1,7 @@ | |||
1 | obj-$(CONFIG_OMAP2_DSS) += omapdss.o | 1 | obj-$(CONFIG_OMAP2_DSS) += omapdss.o |
2 | omapdss-y := core.o dss.o dss_features.o dispc.o dispc_coefs.o display.o \ | 2 | omapdss-y := core.o dss.o dss_features.o dispc.o dispc_coefs.o display.o \ |
3 | manager.o manager-sysfs.o overlay.o overlay-sysfs.o output.o apply.o \ | 3 | manager.o manager-sysfs.o overlay.o overlay-sysfs.o output.o apply.o \ |
4 | display-sysfs.o | 4 | display-sysfs.o dispc-compat.o |
5 | omapdss-$(CONFIG_OMAP2_DSS_DPI) += dpi.o | 5 | omapdss-$(CONFIG_OMAP2_DSS_DPI) += dpi.o |
6 | omapdss-$(CONFIG_OMAP2_DSS_RFBI) += rfbi.o | 6 | omapdss-$(CONFIG_OMAP2_DSS_RFBI) += rfbi.o |
7 | omapdss-$(CONFIG_OMAP2_DSS_VENC) += venc.o venc_panel.o | 7 | omapdss-$(CONFIG_OMAP2_DSS_VENC) += venc.o venc_panel.o |