crypto: ccp - remove redundant ret variable
authorMinghao Chi <chi.minghao@zte.com.cn>
Wed, 12 Jan 2022 08:05:44 +0000 (08:05 +0000)
committerHerbert Xu <herbert@gondor.apana.org.au>
Mon, 31 Jan 2022 00:21:36 +0000 (11:21 +1100)
Return value from ccp_crypto_enqueue_request() directly instead
of taking this in another redundant variable.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
Signed-off-by: CGEL ZTE <cgel.zte@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/ccp/ccp-crypto-aes.c

index e6dcd8c..bed3319 100644 (file)
@@ -69,7 +69,6 @@ static int ccp_aes_crypt(struct skcipher_request *req, bool encrypt)
        struct ccp_aes_req_ctx *rctx = skcipher_request_ctx(req);
        struct scatterlist *iv_sg = NULL;
        unsigned int iv_len = 0;
-       int ret;
 
        if (!ctx->u.aes.key_len)
                return -EINVAL;
@@ -104,9 +103,7 @@ static int ccp_aes_crypt(struct skcipher_request *req, bool encrypt)
        rctx->cmd.u.aes.src_len = req->cryptlen;
        rctx->cmd.u.aes.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_aes_encrypt(struct skcipher_request *req)