1
0
Fork 0

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 <herbert@gondor.apana.org.au>
hifive-unleashed-5.1
Herbert Xu 2015-05-28 22:07:57 +08:00
parent c2110f2834
commit 43615369ab
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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);