Commit ace30f74 authored by Oliver Endriss's avatar Oliver Endriss Committed by Mauro Carvalho Chehab

V4L/DVB: ngene: Take care of late interrupts

Request might already have been processed when the interrupt arrives.
Signed-off-by: default avatarOliver Endriss <o.endriss@gmx.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent b1ec9532
......@@ -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;
}
/****************************************************************************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment