[PATCH 2/7] crypto: amlogic - Use helper to set reqsize
ovidiu.panait at windriver.com
ovidiu.panait at windriver.com
Mon Dec 18 08:46:44 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: Corentin Labbe <clabbe at baylibre.com>
Cc: linux-amlogic at lists.infradead.org
drivers/crypto/amlogic/amlogic-gxl-cipher.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/crypto/amlogic/amlogic-gxl-cipher.c b/drivers/crypto/amlogic/amlogic-gxl-cipher.c
index 3308406612fc..29048da6f50a 100644
--- a/drivers/crypto/amlogic/amlogic-gxl-cipher.c
+++ b/drivers/crypto/amlogic/amlogic-gxl-cipher.c
@@ -327,8 +327,8 @@ int meson_cipher_init(struct crypto_tfm *tfm)
return PTR_ERR(op->fallback_tfm);
}
- sktfm->reqsize = sizeof(struct meson_cipher_req_ctx) +
- crypto_skcipher_reqsize(op->fallback_tfm);
+ crypto_skcipher_set_reqsize(sktfm, sizeof(struct meson_cipher_req_ctx) +
+ crypto_skcipher_reqsize(op->fallback_tfm));
return 0;
}
--
2.34.1
More information about the linux-amlogic
mailing list