aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/crypto/chelsio/chcr_algo.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-04-15 23:49:47 +0100
committerHerbert Xu <herbert@gondor.apana.org.au>2020-04-24 17:42:16 +1000
commit8a656a48f75f193b901efe14326663505874c37a (patch)
treea9e5ecd6fa7a33d6960d7b0691b2c314c3e6afa9 /drivers/crypto/chelsio/chcr_algo.c
parentcrypto: arm64 - Consistently enable extension (diff)
downloadwireguard-linux-8a656a48f75f193b901efe14326663505874c37a.tar.xz
wireguard-linux-8a656a48f75f193b901efe14326663505874c37a.zip
crypto: chelsio - remove redundant assignment to variable error
The variable error is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/chelsio/chcr_algo.c')
-rw-r--r--drivers/crypto/chelsio/chcr_algo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/chelsio/chcr_algo.c b/drivers/crypto/chelsio/chcr_algo.c
index c29b80dd30d8..5d3000fdd5f4 100644
--- a/drivers/crypto/chelsio/chcr_algo.c
+++ b/drivers/crypto/chelsio/chcr_algo.c
@@ -1757,7 +1757,7 @@ static int chcr_ahash_final(struct ahash_request *req)
struct uld_ctx *u_ctx = ULD_CTX(h_ctx(rtfm));
struct chcr_context *ctx = h_ctx(rtfm);
u8 bs = crypto_tfm_alg_blocksize(crypto_ahash_tfm(rtfm));
- int error = -EINVAL;
+ int error;
unsigned int cpu;
cpu = get_cpu();