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 <herbert@gondor.apana.org.au> Acked-by: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
8580e55aa8
commit
846366b0df
|
@ -176,7 +176,6 @@ struct crypto_async_request;
|
||||||
struct crypto_tfm;
|
struct crypto_tfm;
|
||||||
struct crypto_type;
|
struct crypto_type;
|
||||||
|
|
||||||
typedef void crypto_completion_data_t;
|
|
||||||
typedef void (*crypto_completion_t)(void *req, int err);
|
typedef void (*crypto_completion_t)(void *req, int err);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -596,11 +595,6 @@ struct crypto_wait {
|
||||||
/*
|
/*
|
||||||
* Async ops completion helper functioons
|
* Async ops completion helper functioons
|
||||||
*/
|
*/
|
||||||
static inline void *crypto_get_completion_data(void *data)
|
|
||||||
{
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
|
|
||||||
void crypto_req_done(void *req, int err);
|
void crypto_req_done(void *req, int err);
|
||||||
|
|
||||||
static inline int crypto_wait_req(int err, struct crypto_wait *wait)
|
static inline int crypto_wait_req(int err, struct crypto_wait *wait)
|
||||||
|
|
Loading…
Reference in New Issue