summaryrefslogtreecommitdiff
path: root/arch/arm/crypto/blake2b-neon-glue.c
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2021-02-08 18:28:16 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2021-03-07 15:13:14 +1100
commit6131e970770da0e1d667f96efafd3f859aa4ea74 (patch)
treeb574cfe4e73e9e89a2be71ecb5e7800f40c54096 /arch/arm/crypto/blake2b-neon-glue.c
parent3e2ccc7454510e0990104eaf6f24f34be121dabb (diff)
crypto: arm/blake2b - drop unnecessary return statement
Neither crypto_unregister_shashes() nor the module_exit function return a value, so the explicit 'return' is unnecessary. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/arm/crypto/blake2b-neon-glue.c')
-rw-r--r--arch/arm/crypto/blake2b-neon-glue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/crypto/blake2b-neon-glue.c b/arch/arm/crypto/blake2b-neon-glue.c
index 34d73200e7fa..4b59d027ba4a 100644
--- a/arch/arm/crypto/blake2b-neon-glue.c
+++ b/arch/arm/crypto/blake2b-neon-glue.c
@@ -85,8 +85,8 @@ static int __init blake2b_neon_mod_init(void)
static void __exit blake2b_neon_mod_exit(void)
{
- return crypto_unregister_shashes(blake2b_neon_algs,
- ARRAY_SIZE(blake2b_neon_algs));
+ crypto_unregister_shashes(blake2b_neon_algs,
+ ARRAY_SIZE(blake2b_neon_algs));
}
module_init(blake2b_neon_mod_init);