We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e94c1c9 commit 555c566Copy full SHA for 555c566
drivers/crypto/sahara.c
@@ -1049,7 +1049,7 @@ static int sahara_queue_manage(void *data)
1049
spin_unlock_bh(&dev->queue_spinlock);
1050
1051
if (backlog)
1052
- backlog->complete(backlog, -EINPROGRESS);
+ crypto_request_complete(backlog, -EINPROGRESS);
1053
1054
if (async_req) {
1055
if (crypto_tfm_alg_type(async_req->tfm) ==
@@ -1065,7 +1065,7 @@ static int sahara_queue_manage(void *data)
1065
ret = sahara_aes_process(req);
1066
}
1067
1068
- async_req->complete(async_req, ret);
+ crypto_request_complete(async_req, ret);
1069
1070
continue;
1071
0 commit comments