projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13c2075
)
crypto: hifn_795x - Use request_complete helpers
author
Herbert Xu
<herbert@gondor.apana.org.au>
Tue, 31 Jan 2023 08:02:23 +0000
(16:02 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Mon, 13 Feb 2023 10:34:49 +0000
(18:34 +0800)
Use the request_complete helpers instead of calling the completion
function directly.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/hifn_795x.c
patch
|
blob
|
history
diff --git
a/drivers/crypto/hifn_795x.c
b/drivers/crypto/hifn_795x.c
index 7e7a8f01ea6b543fd41385e32f222db52be7af4c..5a7f6611803c172e331c5f50262c23792b76837c 100644
(file)
--- a/
drivers/crypto/hifn_795x.c
+++ b/
drivers/crypto/hifn_795x.c
@@
-1705,7
+1705,7
@@
static void hifn_process_ready(struct skcipher_request *req, int error)
hifn_cipher_walk_exit(&rctx->walk);
}
-
req->base.complete(&req->base
, error);
+
skcipher_request_complete(req
, error);
}
static void hifn_clear_rings(struct hifn_device *dev, int error)
@@
-2054,7
+2054,7
@@
static int hifn_process_queue(struct hifn_device *dev)
break;
if (backlog)
-
backlog->
complete(backlog, -EINPROGRESS);
+
crypto_request_
complete(backlog, -EINPROGRESS);
req = skcipher_request_cast(async_req);