aboutsummaryrefslogtreecommitdiffstats
path: root/include/video
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2012-10-10 07:03:11 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2012-12-07 10:05:56 -0500
commit549acbe7a3380dd3bd2ac71698549148ecc0d17e (patch)
treee4a01389256fafada273ad2637313fbe04b7fe32 /include/video
parentbb39813413db782cc77b94d55cb5d044f42079df (diff)
OMAPDSS: move omap_dispc_wait_for_irq_interruptible_timeout to dispc-compat.c
We have two functions to wait for a dispc interrupt: int omap_dispc_wait_for_irq_timeout(u32 irqmask, unsigned long timeout); int omap_dispc_wait_for_irq_interruptible_timeout(u32 irqmask, Of these, the former is not used at all, and can be removed. The latter is only used by the compat layer, and can be moved to the compat layer code. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video')
-rw-r--r--include/video/omapdss.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h
index a9402362d817..823a07b00fe5 100644
--- a/include/video/omapdss.h
+++ b/include/video/omapdss.h
@@ -775,10 +775,6 @@ typedef void (*omap_dispc_isr_t) (void *arg, u32 mask);
775int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask); 775int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
776int omap_dispc_unregister_isr(omap_dispc_isr_t isr, void *arg, u32 mask); 776int omap_dispc_unregister_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
777 777
778int omap_dispc_wait_for_irq_timeout(u32 irqmask, unsigned long timeout);
779int omap_dispc_wait_for_irq_interruptible_timeout(u32 irqmask,
780 unsigned long timeout);
781
782#define to_dss_driver(x) container_of((x), struct omap_dss_driver, driver) 778#define to_dss_driver(x) container_of((x), struct omap_dss_driver, driver)
783#define to_dss_device(x) container_of((x), struct omap_dss_device, dev) 779#define to_dss_device(x) container_of((x), struct omap_dss_device, dev)
784 780