mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
crypto: omap-sham - do not schedule tasklet if there is no active requests
Signed-off-by: Dmitry Kasatkin <dmitry.kasatkin@nokia.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
0efd4d8a6a
commit
cd3f1d545c
@ -1085,6 +1085,11 @@ static irqreturn_t omap_sham_irq(int irq, void *dev_id)
|
||||
SHA_REG_CTRL_OUTPUT_READY);
|
||||
omap_sham_read(dd, SHA_REG_CTRL);
|
||||
|
||||
if (!test_bit(FLAGS_BUSY, &dd->flags)) {
|
||||
dev_warn(dd->dev, "Interrupt when no active requests.\n");
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
set_bit(FLAGS_OUTPUT_READY, &dd->flags);
|
||||
tasklet_schedule(&dd->done_task);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user