summaryrefslogtreecommitdiffstats
path: root/crypto/ahash.c
diff options
context:
space:
mode:
authorHerbert Xu2008-07-07 14:54:35 +0200
committerHerbert Xu2008-07-10 14:35:18 +0200
commit166247f46a9c866e6f7f7d2212be875fb82212a1 (patch)
tree54818c04ba4224b1a3d717f0dbf62456bb32deaa /crypto/ahash.c
parentcrypto: hash - Fixed digest size check (diff)
downloadkernel-qcow2-linux-166247f46a9c866e6f7f7d2212be875fb82212a1.tar.gz
kernel-qcow2-linux-166247f46a9c866e6f7f7d2212be875fb82212a1.tar.xz
kernel-qcow2-linux-166247f46a9c866e6f7f7d2212be875fb82212a1.zip
crypto: hash - Removed vestigial ahash fields
The base field in ahash_tfm appears to have been cut-n-pasted from ablkcipher. It isn't needed here at all. Similarly, the info field in ahash_request also appears to have originated from its cipher counter-part and is vestigial. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/ahash.c')
-rw-r--r--crypto/ahash.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c
index 8c1f918a6878..e6e5906ca80a 100644
--- a/crypto/ahash.c
+++ b/crypto/ahash.c
@@ -76,7 +76,6 @@ static int crypto_init_ahash_ops(struct crypto_tfm *tfm, u32 type, u32 mask)
crt->final = alg->final;
crt->digest = alg->digest;
crt->setkey = ahash_setkey;
- crt->base = __crypto_ahash_cast(tfm);
crt->digestsize = alg->digestsize;
return 0;