From 43615369ab79f2c06532ea1607266b8307ccce82 Mon Sep 17 00:00:00 2001 From: Herbert Xu Date: Thu, 28 May 2015 22:07:57 +0800 Subject: crypto: aead - Ignore return value from crypto_unregister_alg No new code should be using the return value of crypto_unregister_alg as it will become void soon. Signed-off-by: Herbert Xu --- crypto/aead.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/aead.c') diff --git a/crypto/aead.c b/crypto/aead.c index 4bab3cff3578..ac4479297864 100644 --- a/crypto/aead.c +++ b/crypto/aead.c @@ -890,9 +890,9 @@ int crypto_register_aead(struct aead_alg *alg) } EXPORT_SYMBOL_GPL(crypto_register_aead); -int crypto_unregister_aead(struct aead_alg *alg) +void crypto_unregister_aead(struct aead_alg *alg) { - return crypto_unregister_alg(&alg->base); + crypto_unregister_alg(&alg->base); } EXPORT_SYMBOL_GPL(crypto_unregister_aead); -- cgit v1.2.3