aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/input/touchscreen/wm97xx-core.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/input/touchscreen/wm97xx-core.c b/drivers/input/touchscreen/wm97xx-core.c
index 2910999e05a..e27b1e060b3 100644
--- a/drivers/input/touchscreen/wm97xx-core.c
+++ b/drivers/input/touchscreen/wm97xx-core.c
@@ -328,18 +328,18 @@ static void wm97xx_pen_irq_worker(struct work_struct *work)
328 * 328 *
329 * We have to disable the codec interrupt in the handler because it 329 * We have to disable the codec interrupt in the handler because it
330 * can take upto 1ms to clear the interrupt source. We schedule a task 330 * can take upto 1ms to clear the interrupt source. We schedule a task
331 * in a work queue to do the actual interaction with the chip (it 331 * in a work queue to do the actual interaction with the chip. The
332 * doesn't matter if we end up reenqueing it before it is executed 332 * interrupt is then enabled again in the slow handler when the source
333 * since we don't touch the chip until it has run). The interrupt is 333 * has been cleared.
334 * then enabled again in the slow handler when the source has been
335 * cleared.
336 */ 334 */
337static irqreturn_t wm97xx_pen_interrupt(int irq, void *dev_id) 335static irqreturn_t wm97xx_pen_interrupt(int irq, void *dev_id)
338{ 336{
339 struct wm97xx *wm = dev_id; 337 struct wm97xx *wm = dev_id;
340 338
341 wm->mach_ops->irq_enable(wm, 0); 339 if (!work_pending(&wm->pen_event_work)) {
342 queue_work(wm->ts_workq, &wm->pen_event_work); 340 wm->mach_ops->irq_enable(wm, 0);
341 queue_work(wm->ts_workq, &wm->pen_event_work);
342 }
343 343
344 return IRQ_HANDLED; 344 return IRQ_HANDLED;
345} 345}