diff options
author | Eric Biggers <ebiggers@google.com> | 2023-10-22 01:10:54 -0700 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-10-27 18:04:29 +0800 |
commit | c2435e81a6930fed5aeb0aecc219b467a3045f5d (patch) | |
tree | 911cb5528dc13d13e8c564c2b84d0fb8d5b79a25 /crypto/ahash.c | |
parent | 0f8660c82b79af595b056f6b9f4f227edeb88574 (diff) | |
download | linux-c2435e81a6930fed5aeb0aecc219b467a3045f5d.tar.gz linux-c2435e81a6930fed5aeb0aecc219b467a3045f5d.tar.bz2 linux-c2435e81a6930fed5aeb0aecc219b467a3045f5d.zip |
crypto: ahash - remove struct ahash_request_priv
struct ahash_request_priv is unused, so remove it.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/ahash.c')
-rw-r--r-- | crypto/ahash.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c index 744fd3b8ea25..556c95010093 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c @@ -25,14 +25,6 @@ static const struct crypto_type crypto_ahash_type; -struct ahash_request_priv { - crypto_completion_t complete; - void *data; - u8 *result; - u32 flags; - void *ubuf[] CRYPTO_MINALIGN_ATTR; -}; - static int hash_walk_next(struct crypto_hash_walk *walk) { unsigned int offset = walk->offset; |