diff options
author | Jussi Kivilinna <jussi.kivilinna@mbnet.fi> | 2012-08-28 16:47:04 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-09-07 04:17:05 +0800 |
commit | 3cfad0d03ccb0fa7932398caecf97d11ab654a77 (patch) | |
tree | 609c324e7a778f2783682ce919889b3297a5fd1d /include/crypto | |
parent | 1ffb72a39a92c1a03b3c732280e924c02c509cd3 (diff) | |
download | linux-3cfad0d03ccb0fa7932398caecf97d11ab654a77.tar.gz linux-3cfad0d03ccb0fa7932398caecf97d11ab654a77.tar.bz2 linux-3cfad0d03ccb0fa7932398caecf97d11ab654a77.zip |
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 dcb90c13dd39..586183a0406e 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); void __cast5_encrypt(struct cast5_ctx *ctx, u8 *dst, const u8 *src); void __cast5_decrypt(struct cast5_ctx *ctx, u8 *dst, const u8 *src); +extern const u32 cast5_s1[256]; +extern const u32 cast5_s2[256]; +extern const u32 cast5_s3[256]; +extern const u32 cast5_s4[256]; + #endif |