Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;
}

/****************************************************************************/