From 04f6643a8657bd080344d2928dde917e0b1b3800 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Mon, 7 Nov 2011 15:04:01 +0200 Subject: [PATCH] OMAPDSS: APPLY: skip isr register and config for disabled displays There's no need to register the vsync ISR and configure the hardware if the overlay manager is disabled, so this patch adds a check for disabled managers to the omap_dss_mgr_apply() function. Signed-off-by: Tomi Valkeinen --- drivers/video/omap2/dss/apply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/omap2/dss/apply.c b/drivers/video/omap2/dss/apply.c index 0da8081..7919ff3 100644 --- a/drivers/video/omap2/dss/apply.c +++ b/drivers/video/omap2/dss/apply.c @@ -629,7 +629,7 @@ int omap_dss_mgr_apply(struct omap_overlay_manager *mgr) } r = 0; - if (!mgr_manual_update(mgr)) { + if (mgr->enabled && !mgr_manual_update(mgr)) { if (!dss_cache.irq_enabled) { u32 mask; -- 2.7.4