V4L/DVB: ngene: Take care of late interrupts

Request might already have been processed when the interrupt arrives.

Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Oliver Endriss 2010-01-20 19:03:22 -03:00 committed by Mauro Carvalho Chehab
parent b1ec953234
commit ace30f74ac

View file

@ -253,7 +253,8 @@ static irqreturn_t irq_handler(int irq, void *dev_id)
spin_unlock(&dev->channel[i].state_lock);
}
return rc;
/* Request might have been processed by a previous call. */
return IRQ_HANDLED;
}
/****************************************************************************/