diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-10-24 12:39:53 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-12-07 17:05:56 +0200 |
commit | bb39813413db782cc77b94d55cb5d044f42079df (patch) | |
tree | 76cd7a0e4654570506682ea0c533be03e0b73bb9 /drivers/video/omap2/dss/Makefile | |
parent | 1550202d4a7593655a2aca99e39a58751073c92a (diff) | |
download | blackbird-op-linux-bb39813413db782cc77b94d55cb5d044f42079df.tar.gz blackbird-op-linux-bb39813413db782cc77b94d55cb5d044f42079df.zip |
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 @@ obj-$(CONFIG_OMAP2_DSS) += omapdss.o omapdss-y := core.o dss.o dss_features.o dispc.o dispc_coefs.o display.o \ manager.o manager-sysfs.o overlay.o overlay-sysfs.o output.o apply.o \ - display-sysfs.o + display-sysfs.o dispc-compat.o omapdss-$(CONFIG_OMAP2_DSS_DPI) += dpi.o omapdss-$(CONFIG_OMAP2_DSS_RFBI) += rfbi.o omapdss-$(CONFIG_OMAP2_DSS_VENC) += venc.o venc_panel.o |