summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2025-04-07 13:21:11 +0300
committerHerbert Xu <herbert@gondor.apana.org.au>2025-04-16 10:16:21 +0300
commitc360df01c6c19959d2218cbad56d5b7c2ac7a476 (patch)
tree546131734227b6291c9600cf503fa9a8f6b9d9dd /include
parent300e6d6e9ebf2dcc0ca3eab68ed65207e947926c (diff)
downloadlinux-c360df01c6c19959d2218cbad56d5b7c2ac7a476.tar.xz
crypto: ahash - Use cra_reqsize
Use the common reqsize field and remove reqsize from ahash_alg. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include')
-rw-r--r--include/crypto/hash.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/crypto/hash.h b/include/crypto/hash.h
index 113a5835e586..eceb2ed04f26 100644
--- a/include/crypto/hash.h
+++ b/include/crypto/hash.h
@@ -136,7 +136,6 @@ struct ahash_request {
* This is a counterpart to @init_tfm, used to remove
* various changes set in @init_tfm.
* @clone_tfm: Copy transform into new object, may allocate memory.
- * @reqsize: Size of the request context.
* @halg: see struct hash_alg_common
*/
struct ahash_alg {
@@ -153,8 +152,6 @@ struct ahash_alg {
void (*exit_tfm)(struct crypto_ahash *tfm);
int (*clone_tfm)(struct crypto_ahash *dst, struct crypto_ahash *src);
- unsigned int reqsize;
-
struct hash_alg_common halg;
};