diff options
Diffstat (limited to 'cryptodev_cipher.c')
-rw-r--r-- | cryptodev_cipher.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cryptodev_cipher.c b/cryptodev_cipher.c index 622684f..86b3bdc 100644 --- a/cryptodev_cipher.c +++ b/cryptodev_cipher.c @@ -147,8 +147,7 @@ static inline int waitfor (struct cryptodev_result* cr, ssize_t ret) break; case -EINPROGRESS: case -EBUSY: - ret = wait_for_completion_interruptible( - &cr->completion); + ret = wait_for_completion(&cr->completion); /* no error from wait_for_completion */ if (ret) { dprintk(0,KERN_ERR,"error waiting for async request completion: %zd\n", ret); |