mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
crypto: iaa - Use cra_reqsize for acomp
Use the common reqsize field for acomp algorithms. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
1d10f79012
commit
47b5b6f9eb
1 changed files with 1 additions and 1 deletions
|
@ -1685,12 +1685,12 @@ static struct acomp_alg iaa_acomp_fixed_deflate = {
|
|||
.init = iaa_comp_init_fixed,
|
||||
.compress = iaa_comp_acompress,
|
||||
.decompress = iaa_comp_adecompress,
|
||||
.reqsize = sizeof(u32),
|
||||
.base = {
|
||||
.cra_name = "deflate",
|
||||
.cra_driver_name = "deflate-iaa",
|
||||
.cra_flags = CRYPTO_ALG_ASYNC,
|
||||
.cra_ctxsize = sizeof(struct iaa_compression_ctx),
|
||||
.cra_reqsize = sizeof(u32),
|
||||
.cra_module = THIS_MODULE,
|
||||
.cra_priority = IAA_ALG_PRIORITY,
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue