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:
parent
b1ec953234
commit
ace30f74ac
|
@ -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;
|
||||
}
|
||||
|
||||
/****************************************************************************/
|
||||
|
|
Loading…
Reference in New Issue