Commit 51bdb2fe authored by Herbert Xu's avatar Herbert Xu

crypto: artpec6 - Use request_complete helpers

Use the request_complete helpers instead of calling the completion
function directly.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Acked-by: default avatarJesper Nilsson <jesper.nilsson@axis.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 7d19abdc
...@@ -2143,13 +2143,13 @@ static void artpec6_crypto_task(unsigned long data) ...@@ -2143,13 +2143,13 @@ static void artpec6_crypto_task(unsigned long data)
list_for_each_entry_safe(req, n, &complete_in_progress, list_for_each_entry_safe(req, n, &complete_in_progress,
complete_in_progress) { complete_in_progress) {
req->req->complete(req->req, -EINPROGRESS); crypto_request_complete(req->req, -EINPROGRESS);
} }
} }
static void artpec6_crypto_complete_crypto(struct crypto_async_request *req) static void artpec6_crypto_complete_crypto(struct crypto_async_request *req)
{ {
req->complete(req, 0); crypto_request_complete(req, 0);
} }
static void static void
...@@ -2161,7 +2161,7 @@ artpec6_crypto_complete_cbc_decrypt(struct crypto_async_request *req) ...@@ -2161,7 +2161,7 @@ artpec6_crypto_complete_cbc_decrypt(struct crypto_async_request *req)
scatterwalk_map_and_copy(cipher_req->iv, cipher_req->src, scatterwalk_map_and_copy(cipher_req->iv, cipher_req->src,
cipher_req->cryptlen - AES_BLOCK_SIZE, cipher_req->cryptlen - AES_BLOCK_SIZE,
AES_BLOCK_SIZE, 0); AES_BLOCK_SIZE, 0);
req->complete(req, 0); skcipher_request_complete(cipher_req, 0);
} }
static void static void
...@@ -2173,7 +2173,7 @@ artpec6_crypto_complete_cbc_encrypt(struct crypto_async_request *req) ...@@ -2173,7 +2173,7 @@ artpec6_crypto_complete_cbc_encrypt(struct crypto_async_request *req)
scatterwalk_map_and_copy(cipher_req->iv, cipher_req->dst, scatterwalk_map_and_copy(cipher_req->iv, cipher_req->dst,
cipher_req->cryptlen - AES_BLOCK_SIZE, cipher_req->cryptlen - AES_BLOCK_SIZE,
AES_BLOCK_SIZE, 0); AES_BLOCK_SIZE, 0);
req->complete(req, 0); skcipher_request_complete(cipher_req, 0);
} }
static void artpec6_crypto_complete_aead(struct crypto_async_request *req) static void artpec6_crypto_complete_aead(struct crypto_async_request *req)
...@@ -2211,12 +2211,12 @@ static void artpec6_crypto_complete_aead(struct crypto_async_request *req) ...@@ -2211,12 +2211,12 @@ static void artpec6_crypto_complete_aead(struct crypto_async_request *req)
} }
} }
req->complete(req, result); aead_request_complete(areq, result);
} }
static void artpec6_crypto_complete_hash(struct crypto_async_request *req) static void artpec6_crypto_complete_hash(struct crypto_async_request *req)
{ {
req->complete(req, 0); crypto_request_complete(req, 0);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment