2022-09-20 06:46:29

by CGEL

[permalink] [raw]
Subject: [PATCH linux-next] crypto: ccp: Remove the unneeded result variable

From: ye xingchen <[email protected]>

Return the value ccp_crypto_enqueue_request() directly instead of storing
it in another redundant variable.

Reported-by: Zeal Robot <[email protected]>
Signed-off-by: ye xingchen <[email protected]>
---
drivers/crypto/ccp/ccp-crypto-des3.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/crypto/ccp/ccp-crypto-des3.c b/drivers/crypto/ccp/ccp-crypto-des3.c
index ec97daf0fcb7..278636ed251a 100644
--- a/drivers/crypto/ccp/ccp-crypto-des3.c
+++ b/drivers/crypto/ccp/ccp-crypto-des3.c
@@ -64,7 +64,6 @@ static int ccp_des3_crypt(struct skcipher_request *req, bool encrypt)
struct ccp_des3_req_ctx *rctx = skcipher_request_ctx(req);
struct scatterlist *iv_sg = NULL;
unsigned int iv_len = 0;
- int ret;

if (!ctx->u.des3.key_len)
return -EINVAL;
@@ -100,9 +99,7 @@ static int ccp_des3_crypt(struct skcipher_request *req, bool encrypt)
rctx->cmd.u.des3.src_len = req->cryptlen;
rctx->cmd.u.des3.dst = req->dst;

- ret = ccp_crypto_enqueue_request(&req->base, &rctx->cmd);
-
- return ret;
+ return ccp_crypto_enqueue_request(&req->base, &rctx->cmd);
}

static int ccp_des3_encrypt(struct skcipher_request *req)
--
2.25.1


2022-09-20 19:22:38

by John Allen

[permalink] [raw]
Subject: Re: [PATCH linux-next] crypto: ccp: Remove the unneeded result variable

On 9/20/22 1:32 AM, [email protected] wrote:
> From: ye xingchen <[email protected]>
>
> Return the value ccp_crypto_enqueue_request() directly instead of storing
> it in another redundant variable.
>
> Reported-by: Zeal Robot <[email protected]>
> Signed-off-by: ye xingchen <[email protected]>
> ---
> drivers/crypto/ccp/ccp-crypto-des3.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/crypto/ccp/ccp-crypto-des3.c b/drivers/crypto/ccp/ccp-crypto-des3.c
> index ec97daf0fcb7..278636ed251a 100644
> --- a/drivers/crypto/ccp/ccp-crypto-des3.c
> +++ b/drivers/crypto/ccp/ccp-crypto-des3.c
> @@ -64,7 +64,6 @@ static int ccp_des3_crypt(struct skcipher_request *req, bool encrypt)
> struct ccp_des3_req_ctx *rctx = skcipher_request_ctx(req);
> struct scatterlist *iv_sg = NULL;
> unsigned int iv_len = 0;
> - int ret;
>
> if (!ctx->u.des3.key_len)
> return -EINVAL;
> @@ -100,9 +99,7 @@ static int ccp_des3_crypt(struct skcipher_request *req, bool encrypt)
> rctx->cmd.u.des3.src_len = req->cryptlen;
> rctx->cmd.u.des3.dst = req->dst;
>
> - ret = ccp_crypto_enqueue_request(&req->base, &rctx->cmd);
> -
> - return ret;
> + return ccp_crypto_enqueue_request(&req->base, &rctx->cmd);
> }
>
> static int ccp_des3_encrypt(struct skcipher_request *req)

Acked-by: John Allen <[email protected]>

2022-09-30 06:17:27

by Herbert Xu

[permalink] [raw]
Subject: Re: [PATCH linux-next] crypto: ccp: Remove the unneeded result variable

On Tue, Sep 20, 2022 at 06:32:52AM +0000, [email protected] wrote:
> From: ye xingchen <[email protected]>
>
> Return the value ccp_crypto_enqueue_request() directly instead of storing
> it in another redundant variable.
>
> Reported-by: Zeal Robot <[email protected]>
> Signed-off-by: ye xingchen <[email protected]>
> ---
> drivers/crypto/ccp/ccp-crypto-des3.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)

Patch applied. Thanks.
--
Email: Herbert Xu <[email protected]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt