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 --- include/crypto/internal/aead.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/crypto/internal/aead.h b/include/crypto/internal/aead.h index f068d74da9f6..3cb35d882930 100644 --- a/include/crypto/internal/aead.h +++ b/include/crypto/internal/aead.h @@ -151,7 +151,7 @@ static inline unsigned int crypto_aead_maxauthsize(struct crypto_aead *aead) } int crypto_register_aead(struct aead_alg *alg); -int crypto_unregister_aead(struct aead_alg *alg); +void crypto_unregister_aead(struct aead_alg *alg); int aead_register_instance(struct crypto_template *tmpl, struct aead_instance *inst); -- cgit v1.2.3-59-g8ed1b