diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2008-07-07 08:54:35 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-07-10 08:35:18 -0400 |
commit | 166247f46a9c866e6f7f7d2212be875fb82212a1 (patch) | |
tree | 54818c04ba4224b1a3d717f0dbf62456bb32deaa /crypto/digest.c | |
parent | ca786dc738f4f583b57b1bba7a335b5e8233f4b0 (diff) |
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/digest.c')
-rw-r--r-- | crypto/digest.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/digest.c b/crypto/digest.c index d63d5d96feec..bf332982c50d 100644 --- a/crypto/digest.c +++ b/crypto/digest.c | |||
@@ -234,7 +234,6 @@ int crypto_init_digest_ops_async(struct crypto_tfm *tfm) | |||
234 | crt->setkey = dalg->dia_setkey ? digest_async_setkey : | 234 | crt->setkey = dalg->dia_setkey ? digest_async_setkey : |
235 | digest_async_nosetkey; | 235 | digest_async_nosetkey; |
236 | crt->digestsize = dalg->dia_digestsize; | 236 | crt->digestsize = dalg->dia_digestsize; |
237 | crt->base = __crypto_ahash_cast(tfm); | ||
238 | 237 | ||
239 | return 0; | 238 | return 0; |
240 | } | 239 | } |