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

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>

+1 -1
+1 -1
include/crypto/internal/kpp.h
··· 85 85 86 86 static inline void kpp_request_complete(struct kpp_request *req, int err) 87 87 { 88 - req->base.complete(&req->base, err); 88 + crypto_request_complete(&req->base, err); 89 89 } 90 90 91 91 static inline const char *kpp_alg_name(struct crypto_kpp *tfm)