Re: drivers/crypto/tegra/tegra-se-aes.c:1596 tegra_cmac_do_one_req() error: uninitialized symbol 'ret'.
From: Herbert Xu
Date: Sat Dec 21 2024 - 23:18:23 EST
On Mon, Dec 09, 2024 at 09:24:49AM +0300, Dan Carpenter wrote:
>
> vim +/ret +1596 drivers/crypto/tegra/tegra-se-aes.c
>
> 0880bb3b00c855f Akhil R 2024-04-03 1577 static int tegra_cmac_do_one_req(struct crypto_engine *engine, void *areq)
> 0880bb3b00c855f Akhil R 2024-04-03 1578 {
> 0880bb3b00c855f Akhil R 2024-04-03 1579 struct ahash_request *req = ahash_request_cast(areq);
> 0880bb3b00c855f Akhil R 2024-04-03 1580 struct tegra_cmac_reqctx *rctx = ahash_request_ctx(req);
> 0880bb3b00c855f Akhil R 2024-04-03 1581 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
> 0880bb3b00c855f Akhil R 2024-04-03 1582 struct tegra_cmac_ctx *ctx = crypto_ahash_ctx(tfm);
> 0880bb3b00c855f Akhil R 2024-04-03 1583 struct tegra_se *se = ctx->se;
> 0880bb3b00c855f Akhil R 2024-04-03 1584 int ret;
> 0880bb3b00c855f Akhil R 2024-04-03 1585
> 0880bb3b00c855f Akhil R 2024-04-03 1586 if (rctx->task & SHA_UPDATE) {
> 0880bb3b00c855f Akhil R 2024-04-03 1587 ret = tegra_cmac_do_update(req);
> 0880bb3b00c855f Akhil R 2024-04-03 1588 rctx->task &= ~SHA_UPDATE;
> 0880bb3b00c855f Akhil R 2024-04-03 1589 }
> 0880bb3b00c855f Akhil R 2024-04-03 1590
> 0880bb3b00c855f Akhil R 2024-04-03 1591 if (rctx->task & SHA_FINAL) {
> 0880bb3b00c855f Akhil R 2024-04-03 1592 ret = tegra_cmac_do_final(req);
> 0880bb3b00c855f Akhil R 2024-04-03 1593 rctx->task &= ~SHA_FINAL;
> 0880bb3b00c855f Akhil R 2024-04-03 1594 }
>
> Is it possible for both SHA_UPDATE and SHA_FINAL to be clear?
I don't think so.
Thanks,
--
Email: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt