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

crypto: akcipher - 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/akcipher.h
··· 69 69 static inline void akcipher_request_complete(struct akcipher_request *req, 70 70 int err) 71 71 { 72 - req->base.complete(&req->base, err); 72 + crypto_request_complete(&req->base, err); 73 73 } 74 74 75 75 static inline const char *akcipher_alg_name(struct crypto_akcipher *tfm)