mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
crypto: sahara - Use request_complete helpers
Use the request_complete helpers instead of calling the completion function directly. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
e94c1c9b43
commit
555c566131
1 changed files with 2 additions and 2 deletions
|
@ -1049,7 +1049,7 @@ static int sahara_queue_manage(void *data)
|
|||
spin_unlock_bh(&dev->queue_spinlock);
|
||||
|
||||
if (backlog)
|
||||
backlog->complete(backlog, -EINPROGRESS);
|
||||
crypto_request_complete(backlog, -EINPROGRESS);
|
||||
|
||||
if (async_req) {
|
||||
if (crypto_tfm_alg_type(async_req->tfm) ==
|
||||
|
@ -1065,7 +1065,7 @@ static int sahara_queue_manage(void *data)
|
|||
ret = sahara_aes_process(req);
|
||||
}
|
||||
|
||||
async_req->complete(async_req, ret);
|
||||
crypto_request_complete(async_req, ret);
|
||||
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue