Message ID | E1pMlaR-005veW-Oc@formenos.hmeau.com |
---|---|
State | Accepted |
Commit | 372e6b80bafe1269f43c750885aa32baa34cd017 |
Headers | show |
Series | crypto: api - Prepare to change callback argument to void star | expand |
diff --git a/include/crypto/internal/aead.h b/include/crypto/internal/aead.h index cd8cb1e921b7..28a95eb3182d 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)
Use the crypto_request_complete helper instead of calling the completion function directly. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> --- include/crypto/internal/aead.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)