diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2023-09-23 12:08:06 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-10-01 10:28:15 +0200 |
commit | 5ec12f1c7bac891c3268dd6e441a3755ca2b46e0 (patch) | |
tree | e113f8b2b27eea24a582960a28162f9790ff8a5b /include/crypto | |
parent | crypto: keembay - Don't pass errors to the caller in .remove() (diff) | |
download | linux-5ec12f1c7bac891c3268dd6e441a3755ca2b46e0.tar.xz linux-5ec12f1c7bac891c3268dd6e441a3755ca2b46e0.zip |
crypto: engine - Make crypto_engine_exit() return void
All callers ignore the return value, so simplify by not providing one.
Note that crypto_engine_exit() is typically called in a device driver's
remove path (or the error path in probe), where errors cannot be handled
anyhow.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/engine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crypto/engine.h b/include/crypto/engine.h index 2835069c5997..545dbefe3e13 100644 --- a/include/crypto/engine.h +++ b/include/crypto/engine.h @@ -78,7 +78,7 @@ struct crypto_engine *crypto_engine_alloc_init_and_set(struct device *dev, bool retry_support, int (*cbk_do_batch)(struct crypto_engine *engine), bool rt, int qlen); -int crypto_engine_exit(struct crypto_engine *engine); +void crypto_engine_exit(struct crypto_engine *engine); int crypto_engine_register_aead(struct aead_engine_alg *alg); void crypto_engine_unregister_aead(struct aead_engine_alg *alg); |