diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-11-04 10:30:47 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-12-02 08:54:31 +0200 |
commit | be729178f0e0f31ab14b42b3fe5d6b4463fbeb3a (patch) | |
tree | 2a0de9a2f0aa432983bb55a4d86dc4c76fc17f8a /include | |
parent | 7797c6da64852b06b585b7eca8d3f657bfc9fa47 (diff) | |
download | linux-3.10-be729178f0e0f31ab14b42b3fe5d6b4463fbeb3a.tar.gz linux-3.10-be729178f0e0f31ab14b42b3fe5d6b4463fbeb3a.tar.bz2 linux-3.10-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 'include')
-rw-r--r-- | include/video/omapdss.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index 04741cd4c32..d61efc3105a 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -432,6 +432,8 @@ struct omap_overlay_manager { struct omap_dss_device *device; struct omap_overlay_manager_info info; + bool enabled; + bool device_changed; /* if true, info has been changed but not applied() yet */ bool info_dirty; |