From: Herbert Xu Date: Mon, 6 Feb 2023 10:22:46 +0000 (+0800) Subject: crypto: api - Remove completion function scaffolding X-Git-Tag: v6.6.17~5349^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=846366b0df0ad19051fbdd38734b1f7690d814c3;p=platform%2Fkernel%2Flinux-rpi.git crypto: api - Remove completion function scaffolding This patch removes the temporary scaffolding now that the comletion function signature has been converted. Signed-off-by: Herbert Xu Acked-by: Jarkko Sakkinen Signed-off-by: Herbert Xu --- diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 80f6350..bb1d9b0 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h @@ -176,7 +176,6 @@ struct crypto_async_request; struct crypto_tfm; struct crypto_type; -typedef void crypto_completion_data_t; typedef void (*crypto_completion_t)(void *req, int err); /** @@ -596,11 +595,6 @@ struct crypto_wait { /* * Async ops completion helper functioons */ -static inline void *crypto_get_completion_data(void *data) -{ - return data; -} - void crypto_req_done(void *req, int err); static inline int crypto_wait_req(int err, struct crypto_wait *wait)