Commit 33ccbfd2 authored by Herbert Xu's avatar Herbert Xu

crypto: bcm - 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 51bdb2fe
...@@ -1614,7 +1614,7 @@ static void finish_req(struct iproc_reqctx_s *rctx, int err) ...@@ -1614,7 +1614,7 @@ static void finish_req(struct iproc_reqctx_s *rctx, int err)
spu_chunk_cleanup(rctx); spu_chunk_cleanup(rctx);
if (areq) if (areq)
areq->complete(areq, err); crypto_request_complete(areq, 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