Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: aead - 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>

+1 -1
+1 -1
include/crypto/internal/aead.h
··· 82 82 83 83 static inline void aead_request_complete(struct aead_request *req, int err) 84 84 { 85 - req->base.complete(&req->base, err); 85 + crypto_request_complete(&req->base, err); 86 86 } 87 87 88 88 static inline u32 aead_request_flags(struct aead_request *req)