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
1 changed files with 2 additions and 1 deletions
|
@ -253,7 +253,8 @@ static irqreturn_t irq_handler(int irq, void *dev_id)
|
||||||
spin_unlock(&dev->channel[i].state_lock);
|
spin_unlock(&dev->channel[i].state_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
return rc;
|
/* Request might have been processed by a previous call. */
|
||||||
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************/
|
/****************************************************************************/
|
||||||
|
|
Loading…
Add table
Reference in a new issue