diff options
| author | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-07 18:21:09 +0800 |
|---|---|---|
| committer | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-16 15:16:21 +0800 |
| commit | 300e6d6e9ebf2dcc0ca3eab68ed65207e947926c (patch) | |
| tree | 0bc298b22581330e653d1e998b140cbd015e8bd5 /crypto | |
| parent | 47b5b6f9eb736b1868b0f9c1a1575b5922451cc6 (diff) | |
| download | net-300e6d6e9ebf2dcc0ca3eab68ed65207e947926c.tar.gz | |
crypto: acomp - Remove reqsize field
Remove the type-specific reqsize field in favour of the common one.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
| -rw-r--r-- | crypto/acompress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/acompress.c b/crypto/acompress.c index 36b52a72a43be9..d5605b0ad2664d 100644 --- a/crypto/acompress.c +++ b/crypto/acompress.c @@ -109,7 +109,7 @@ static int crypto_acomp_init_tfm(struct crypto_tfm *tfm) acomp->compress = alg->compress; acomp->decompress = alg->decompress; - acomp->reqsize = alg->base.cra_reqsize ?: alg->reqsize; + acomp->reqsize = alg->base.cra_reqsize; acomp->base.exit = crypto_acomp_exit_tfm; |
