Commit a712bff0 authored by Herbert Xu's avatar Herbert Xu

crypto: img-hash - 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 e2b537b7
...@@ -308,7 +308,7 @@ static void img_hash_finish_req(struct ahash_request *req, int err) ...@@ -308,7 +308,7 @@ static void img_hash_finish_req(struct ahash_request *req, int err)
DRIVER_FLAGS_CPU | DRIVER_FLAGS_BUSY | DRIVER_FLAGS_FINAL); DRIVER_FLAGS_CPU | DRIVER_FLAGS_BUSY | DRIVER_FLAGS_FINAL);
if (req->base.complete) if (req->base.complete)
req->base.complete(&req->base, err); ahash_request_complete(req, err);
} }
static int img_hash_write_via_dma(struct img_hash_dev *hdev) static int img_hash_write_via_dma(struct img_hash_dev *hdev)
...@@ -526,7 +526,7 @@ static int img_hash_handle_queue(struct img_hash_dev *hdev, ...@@ -526,7 +526,7 @@ static int img_hash_handle_queue(struct img_hash_dev *hdev,
return res; return res;
if (backlog) if (backlog)
backlog->complete(backlog, -EINPROGRESS); crypto_request_complete(backlog, -EINPROGRESS);
req = ahash_request_cast(async_req); req = ahash_request_cast(async_req);
hdev->req = req; hdev->req = req;
......
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