diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-01-31 16:01:58 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-02-13 18:34:48 +0800 |
commit | ba354b2fdb1068495ffeabc9f48b799407300f92 (patch) | |
tree | fd9b87c7c440f932050bb8d4e5aee38976116226 /include/crypto | |
parent | d9588045f540157e36d8d6aeb54d6ce769a89b5b (diff) |
crypto: kpp - Use crypto_request_complete
Use the crypto_request_complete helper instead of calling the
completion function directly.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/internal/kpp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crypto/internal/kpp.h b/include/crypto/internal/kpp.h index 3c9726e89f53..0a6db8c4a9a0 100644 --- a/include/crypto/internal/kpp.h +++ b/include/crypto/internal/kpp.h @@ -85,7 +85,7 @@ static inline void *kpp_tfm_ctx_dma(struct crypto_kpp *tfm) static inline void kpp_request_complete(struct kpp_request *req, int err) { - req->base.complete(&req->base, err); + crypto_request_complete(&req->base, err); } static inline const char *kpp_alg_name(struct crypto_kpp *tfm) |