[PATCH 1/7] crypto: rk3288 - Use helper to set reqsize
ovidiu.panait at windriver.com
ovidiu.panait at windriver.com
Mon Dec 18 08:46:43 PST 2023
From: Ovidiu Panait <ovidiu.panait at windriver.com>
The value of reqsize must only be changed through the helper.
Signed-off-by: Ovidiu Panait <ovidiu.panait at windriver.com>
---
Cc: Heiko Stuebner <heiko at sntech.de>
Cc: Corentin Labbe <clabbe at baylibre.com>
Cc: linux-rockchip at lists.infradead.org
Cc: linux-arm-kernel at lists.infradead.org
drivers/crypto/rockchip/rk3288_crypto_skcipher.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/crypto/rockchip/rk3288_crypto_skcipher.c b/drivers/crypto/rockchip/rk3288_crypto_skcipher.c
index da95747d973f..9393e10671c2 100644
--- a/drivers/crypto/rockchip/rk3288_crypto_skcipher.c
+++ b/drivers/crypto/rockchip/rk3288_crypto_skcipher.c
@@ -445,8 +445,8 @@ static int rk_cipher_tfm_init(struct crypto_skcipher *tfm)
return PTR_ERR(ctx->fallback_tfm);
}
- tfm->reqsize = sizeof(struct rk_cipher_rctx) +
- crypto_skcipher_reqsize(ctx->fallback_tfm);
+ crypto_skcipher_set_reqsize(tfm, sizeof(struct rk_cipher_rctx) +
+ crypto_skcipher_reqsize(ctx->fallback_tfm));
return 0;
}
--
2.34.1
More information about the Linux-rockchip
mailing list