]> Pileus Git - ~andy/linux/commitdiff
OMAPDSS: APPLY: add dss_apply_ovl_enable()
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Wed, 16 Nov 2011 13:25:53 +0000 (15:25 +0200)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Fri, 2 Dec 2011 06:54:50 +0000 (08:54 +0200)
Add a helper function dss_apply_ovl_enable(), which is similar to the
main apply() function: dss_apply_ovl_enable() applies the given overlay
enable-status to ovl_priv_data, and sets the dirty flag.

The difference between the helper function and the previous direct use
of the fields is that the helper function will not do anything if the
enable state is already the same as given in the parameter.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/omap2/dss/apply.c

index 70154092d7319b5c8991d768f7e5df6b7d36d8b3..ec21837216425038e54b5b7cc6e38e1056477e1d 100644 (file)
@@ -646,6 +646,19 @@ int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
        return r;
 }
 
+static void dss_apply_ovl_enable(struct omap_overlay *ovl, bool enable)
+{
+       struct ovl_priv_data *op;
+
+       op = get_ovl_priv(ovl);
+
+       if (op->enabled == enable)
+               return;
+
+       op->enabled = enable;
+       op->extra_info_dirty = true;
+}
+
 static void dss_ovl_setup_fifo(struct omap_overlay *ovl)
 {
        struct ovl_priv_data *op = get_ovl_priv(ovl);
@@ -999,8 +1012,7 @@ int dss_ovl_enable(struct omap_overlay *ovl)
 
        spin_lock_irqsave(&data_lock, flags);
 
-       op->enabled = true;
-       op->extra_info_dirty = true;
+       dss_apply_ovl_enable(ovl, true);
 
        dss_ovl_setup_fifo(ovl);
 
@@ -1031,8 +1043,7 @@ int dss_ovl_disable(struct omap_overlay *ovl)
 
        spin_lock_irqsave(&data_lock, flags);
 
-       op->enabled = false;
-       op->extra_info_dirty = true;
+       dss_apply_ovl_enable(ovl, false);
 
        dss_write_regs();