[PATCH 5/7] crypto: sl3516 - Use helper to set reqsize

ovidiu.panait at windriver.com ovidiu.panait at windriver.com
Mon Dec 18 08:46:47 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: Hans Ulli Kroll <ulli.kroll at googlemail.com>
Cc: Linus Walleij <linus.walleij at linaro.org>
Cc: Corentin Labbe <clabbe at baylibre.com>
Cc: linux-arm-kernel at lists.infradead.org

 drivers/crypto/gemini/sl3516-ce-cipher.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/crypto/gemini/sl3516-ce-cipher.c b/drivers/crypto/gemini/sl3516-ce-cipher.c
index 49dce9e0a834..583010b2d007 100644
--- a/drivers/crypto/gemini/sl3516-ce-cipher.c
+++ b/drivers/crypto/gemini/sl3516-ce-cipher.c
@@ -332,8 +332,8 @@ int sl3516_ce_cipher_init(struct crypto_tfm *tfm)
 		return PTR_ERR(op->fallback_tfm);
 	}
 
-	sktfm->reqsize = sizeof(struct sl3516_ce_cipher_req_ctx) +
-			 crypto_skcipher_reqsize(op->fallback_tfm);
+	crypto_skcipher_set_reqsize(sktfm, sizeof(struct sl3516_ce_cipher_req_ctx) +
+				    crypto_skcipher_reqsize(op->fallback_tfm));
 
 	dev_info(op->ce->dev, "Fallback for %s is %s\n",
 		 crypto_tfm_alg_driver_name(&sktfm->base),
-- 
2.34.1




More information about the linux-arm-kernel mailing list