diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-13 14:54:32 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-18 17:01:10 +0800 |
commit | bcd6e41d983621954dfc3f1f64249a55838b3e6a (patch) | |
tree | 53c0d0ea281a7029785a110e5a7843051888cc1a /include | |
parent | be8b8a950f0ae601c8ff841b9dcc899f83054025 (diff) | |
download | linux-stable-bcd6e41d983621954dfc3f1f64249a55838b3e6a.tar.gz linux-stable-bcd6e41d983621954dfc3f1f64249a55838b3e6a.tar.bz2 linux-stable-bcd6e41d983621954dfc3f1f64249a55838b3e6a.zip |
crypto: engine - Remove prepare/unprepare request
The callbacks for prepare and unprepare request in crypto_engine
is superfluous. They can be done directly from do_one_request.
Move the code into do_one_request and remove the unused callbacks.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto/engine.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/crypto/engine.h b/include/crypto/engine.h index 2038764b30c2..1b02f69e0a79 100644 --- a/include/crypto/engine.h +++ b/include/crypto/engine.h @@ -78,15 +78,9 @@ struct crypto_engine { /* * struct crypto_engine_op - crypto hardware engine operations - * @prepare_request: do some preparation if needed before handling the current request - * @unprepare_request: undo any work done by prepare_request() * @do_one_request: do encryption for current request */ struct crypto_engine_op { - int (*prepare_request)(struct crypto_engine *engine, - void *areq); - int (*unprepare_request)(struct crypto_engine *engine, - void *areq); int (*do_one_request)(struct crypto_engine *engine, void *areq); }; |