diff options
author | valdis.kletnieks@vt.edu <valdis.kletnieks@vt.edu> | 2018-09-26 18:49:38 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2018-10-04 22:22:48 -0400 |
commit | 90a8c78b8b5e2c8537a170ee675127f02ca94532 (patch) | |
tree | 4d49f0e580c5ee4f55dd6ed30fb3bd69742163c2 | |
parent | 96808c596580a04a91e3e662ae2310e5ed421ecc (diff) |
crypto/morus(640,1280) - make crypto_...-algs static
sparse complains thusly:
CHECK arch/x86/crypto/morus640-sse2-glue.c
arch/x86/crypto/morus640-sse2-glue.c:38:1: warning: symbol 'crypto_morus640_sse2_algs' was not declared. Should it be static?
CHECK arch/x86/crypto/morus1280-sse2-glue.c
arch/x86/crypto/morus1280-sse2-glue.c:38:1: warning: symbol 'crypto_morus1280_sse2_algs' was not declared. Should it be static?
CHECK arch/x86/crypto/morus1280-avx2-glue.c
arch/x86/crypto/morus1280-avx2-glue.c:38:1: warning: symbol 'crypto_morus1280_avx2_algs' was not declared. Should it be static?
and sparse is correct - these don't need to be global and polluting the namespace.
Signed-off-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>
Acked-by: Ondrej Mosnacek <omosnacek@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | include/crypto/morus1280_glue.h | 2 | ||||
-rw-r--r-- | include/crypto/morus640_glue.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/crypto/morus1280_glue.h b/include/crypto/morus1280_glue.h index b26dd70efd9a..ba782e10065e 100644 --- a/include/crypto/morus1280_glue.h +++ b/include/crypto/morus1280_glue.h | |||
@@ -82,7 +82,7 @@ void cryptd_morus1280_glue_exit_tfm(struct crypto_aead *aead); | |||
82 | { \ | 82 | { \ |
83 | } \ | 83 | } \ |
84 | \ | 84 | \ |
85 | struct aead_alg crypto_morus1280_##id##_algs[] = {\ | 85 | static struct aead_alg crypto_morus1280_##id##_algs[] = {\ |
86 | { \ | 86 | { \ |
87 | .setkey = crypto_morus1280_glue_setkey, \ | 87 | .setkey = crypto_morus1280_glue_setkey, \ |
88 | .setauthsize = crypto_morus1280_glue_setauthsize, \ | 88 | .setauthsize = crypto_morus1280_glue_setauthsize, \ |
diff --git a/include/crypto/morus640_glue.h b/include/crypto/morus640_glue.h index 90c8db07e740..27fa790a2362 100644 --- a/include/crypto/morus640_glue.h +++ b/include/crypto/morus640_glue.h | |||
@@ -82,7 +82,7 @@ void cryptd_morus640_glue_exit_tfm(struct crypto_aead *aead); | |||
82 | { \ | 82 | { \ |
83 | } \ | 83 | } \ |
84 | \ | 84 | \ |
85 | struct aead_alg crypto_morus640_##id##_algs[] = {\ | 85 | static struct aead_alg crypto_morus640_##id##_algs[] = {\ |
86 | { \ | 86 | { \ |
87 | .setkey = crypto_morus640_glue_setkey, \ | 87 | .setkey = crypto_morus640_glue_setkey, \ |
88 | .setauthsize = crypto_morus640_glue_setauthsize, \ | 88 | .setauthsize = crypto_morus640_glue_setauthsize, \ |