summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2011-11-04 09:30:47 +0100
committerTomi Valkeinen <tomi.valkeinen@ti.com>2011-12-02 07:54:31 +0100
commitbe729178f0e0f31ab14b42b3fe5d6b4463fbeb3a (patch)
tree2a0de9a2f0aa432983bb55a4d86dc4c76fc17f8a /drivers
parentOMAPDSS: hide manager's enable/disable() (diff)
downloadlinux-be729178f0e0f31ab14b42b3fe5d6b4463fbeb3a.tar.xz
linux-be729178f0e0f31ab14b42b3fe5d6b4463fbeb3a.zip
OMAPDSS: APPLY: track whether a manager is enabled
Add "enabled" field to struct omap_overlay_manager, which tells if the output is enabled or not. This will be used in apply.c in the following patches. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/omap2/dss/apply.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/apply.c b/drivers/video/omap2/dss/apply.c
index 414cbd907239..46fdb63a4dbc 100644
--- a/drivers/video/omap2/dss/apply.c
+++ b/drivers/video/omap2/dss/apply.c
@@ -657,10 +657,12 @@ int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
void dss_mgr_enable(struct omap_overlay_manager *mgr)
{
dispc_mgr_enable(mgr->id, true);
+ mgr->enabled = true;
}
void dss_mgr_disable(struct omap_overlay_manager *mgr)
{
dispc_mgr_enable(mgr->id, false);
+ mgr->enabled = false;
}