Commit 13c20754 authored by Herbert Xu's avatar Herbert Xu

crypto: chelsio - 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 0c18d054
...@@ -220,7 +220,7 @@ static inline int chcr_handle_aead_resp(struct aead_request *req, ...@@ -220,7 +220,7 @@ static inline int chcr_handle_aead_resp(struct aead_request *req,
reqctx->verify = VERIFY_HW; reqctx->verify = VERIFY_HW;
} }
chcr_dec_wrcount(dev); chcr_dec_wrcount(dev);
req->base.complete(&req->base, err); aead_request_complete(req, err);
return err; return err;
} }
...@@ -1235,7 +1235,7 @@ static int chcr_handle_cipher_resp(struct skcipher_request *req, ...@@ -1235,7 +1235,7 @@ static int chcr_handle_cipher_resp(struct skcipher_request *req,
complete(&ctx->cbc_aes_aio_done); complete(&ctx->cbc_aes_aio_done);
} }
chcr_dec_wrcount(dev); chcr_dec_wrcount(dev);
req->base.complete(&req->base, err); skcipher_request_complete(req, err);
return err; return err;
} }
...@@ -2132,7 +2132,7 @@ static inline void chcr_handle_ahash_resp(struct ahash_request *req, ...@@ -2132,7 +2132,7 @@ static inline void chcr_handle_ahash_resp(struct ahash_request *req,
out: out:
chcr_dec_wrcount(dev); chcr_dec_wrcount(dev);
req->base.complete(&req->base, err); ahash_request_complete(req, err);
} }
/* /*
......
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