diff options
author | Jussi Kivilinna <jussi.kivilinna@mbnet.fi> | 2012-08-28 09:47:04 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-09-06 16:17:05 -0400 |
commit | 3cfad0d03ccb0fa7932398caecf97d11ab654a77 (patch) | |
tree | 609c324e7a778f2783682ce919889b3297a5fd1d /include/crypto | |
parent | 1ffb72a39a92c1a03b3c732280e924c02c509cd3 (diff) |
crypto: cast5 - fix sparse warnings (symbol was not declared, should be static?)
Fix "symbol 'x' was not declared. Should it be static?" sparse warnings.
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/cast5.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/crypto/cast5.h b/include/crypto/cast5.h index dcb90c13dd3..586183a0406 100644 --- a/include/crypto/cast5.h +++ b/include/crypto/cast5.h | |||
@@ -19,4 +19,9 @@ int cast5_setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen); | |||
19 | void __cast5_encrypt(struct cast5_ctx *ctx, u8 *dst, const u8 *src); | 19 | void __cast5_encrypt(struct cast5_ctx *ctx, u8 *dst, const u8 *src); |
20 | void __cast5_decrypt(struct cast5_ctx *ctx, u8 *dst, const u8 *src); | 20 | void __cast5_decrypt(struct cast5_ctx *ctx, u8 *dst, const u8 *src); |
21 | 21 | ||
22 | extern const u32 cast5_s1[256]; | ||
23 | extern const u32 cast5_s2[256]; | ||
24 | extern const u32 cast5_s3[256]; | ||
25 | extern const u32 cast5_s4[256]; | ||
26 | |||
22 | #endif | 27 | #endif |