From: Herbert Xu Date: Tue, 31 Jan 2023 08:01:51 +0000 (+0800) Subject: crypto: aead - Use crypto_request_complete X-Git-Tag: v6.6.17~5349^2~50 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=372e6b80bafe1269f43c750885aa32baa34cd017;p=platform%2Fkernel%2Flinux-rpi.git crypto: aead - Use crypto_request_complete Use the crypto_request_complete helper instead of calling the completion function directly. Signed-off-by: Herbert Xu --- diff --git a/include/crypto/internal/aead.h b/include/crypto/internal/aead.h index cd8cb1e9..28a95eb 100644 --- a/include/crypto/internal/aead.h +++ b/include/crypto/internal/aead.h @@ -82,7 +82,7 @@ static inline void *aead_request_ctx_dma(struct aead_request *req) static inline void aead_request_complete(struct aead_request *req, int err) { - req->base.complete(&req->base, err); + crypto_request_complete(&req->base, err); } static inline u32 aead_request_flags(struct aead_request *req)