Commit b34a6416 authored by Herbert Xu's avatar Herbert Xu

crypto: cpt - Use request_complete helpers

Use the request_complete helpers instead of calling the completion
function directly.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 33ccbfd2
...@@ -28,7 +28,7 @@ static void cvm_callback(u32 status, void *arg) ...@@ -28,7 +28,7 @@ static void cvm_callback(u32 status, void *arg)
{ {
struct crypto_async_request *req = (struct crypto_async_request *)arg; struct crypto_async_request *req = (struct crypto_async_request *)arg;
req->complete(req, !status); crypto_request_complete(req, !status);
} }
static inline void update_input_iv(struct cpt_request_info *req_info, static inline void update_input_iv(struct cpt_request_info *req_info,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment