]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
staging: ccree: remove unused and redundant variable idx
authorColin Ian King <colin.king@canonical.com>
Sat, 16 Sep 2017 16:32:51 +0000 (17:32 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Sep 2017 10:23:40 +0000 (12:23 +0200)
Variable idx is being set but never read and thus it can be
removed because it is redundant. Cleans up clang build warnings:

warning: Value stored to 'idx' during its initialization is never read
warning: Value stored to 'idx' is never read
warning: Value stored to 'idx' is never read

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ccree/ssi_aead.c

index d09da280e48ab7c9ba6606e67b56d82631917c60..7a537f8cd943c63669fc1f60886200cb405b3474 100644 (file)
@@ -1809,7 +1809,6 @@ static inline int ssi_aead_gcm(
        unsigned int *seq_size)
 {
        struct aead_req_ctx *req_ctx = aead_request_ctx(req);
-       unsigned int idx = *seq_size;
        unsigned int cipher_flow_mode;
 
        if (req_ctx->gen_ctx.op_type == DRV_CRYPTO_DIRECTION_DECRYPT) {
@@ -1826,7 +1825,6 @@ static inline int ssi_aead_gcm(
                ssi_aead_create_assoc_desc(req, DIN_HASH, desc, seq_size);
                ssi_aead_gcm_setup_gctr_desc(req, desc, seq_size);
                ssi_aead_process_gcm_result_desc(req, desc, seq_size);
-               idx = *seq_size;
                return 0;
        }
 
@@ -1841,7 +1839,6 @@ static inline int ssi_aead_gcm(
                ssi_aead_process_cipher_data_desc(req, cipher_flow_mode, desc, seq_size);
        ssi_aead_process_gcm_result_desc(req, desc, seq_size);
 
-       idx = *seq_size;
        return 0;
 }