]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
OMAPDSS: APPLY: Remove unnecessary variable in dss_apply_irq_handler
authorArchit Taneja <archit@ti.com>
Wed, 7 Nov 2012 09:17:23 +0000 (14:47 +0530)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Mon, 12 Nov 2012 11:52:59 +0000 (13:52 +0200)
The bool was_updating is never really used for anything. It is set to the
current value of mp->updating, but not used anywhere. Remove this variable.

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

index ecac6b6e5a8de596c71073d8c1793fd947a1ad76..55fb5d778ae5c9b1d70a3235a3c62d9ac7804992 100644 (file)
@@ -827,7 +827,6 @@ static void dss_apply_irq_handler(void *data, u32 mask)
        for (i = 0; i < num_mgrs; i++) {
                struct omap_overlay_manager *mgr;
                struct mgr_priv_data *mp;
-               bool was_updating;
 
                mgr = omap_dss_get_overlay_manager(i);
                mp = get_mgr_priv(mgr);
@@ -835,7 +834,6 @@ static void dss_apply_irq_handler(void *data, u32 mask)
                if (!mp->enabled)
                        continue;
 
-               was_updating = mp->updating;
                mp->updating = dispc_mgr_is_enabled(i);
 
                if (!mgr_manual_update(mgr)) {