aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2020-05-26 23:49:02 +0100
committerJens Axboe <[email protected]>2020-05-27 05:41:59 -0600
commite7ecc142e9f33f5a8808b13fb0afa14f36aeeca3 (patch)
treee438be56816e0a6379806f5dab486b6bf170cd6c
parent524f9ffd6a4d3622aa48ca286ff85a30ed1cdbcf (diff)
block: blk-crypto-fallback: remove redundant initialization of variable err
The variable err 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. Signed-off-by: Colin Ian King <[email protected]> Reviewed-by: Eric Biggers <[email protected]> Reviewed-by: Satya Tangirala <[email protected]> Addresses-Coverity: ("Unused value") Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r--block/blk-crypto-fallback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-crypto-fallback.c b/block/blk-crypto-fallback.c
index 74ab137ae3ba..6e49688a2d80 100644
--- a/block/blk-crypto-fallback.c
+++ b/block/blk-crypto-fallback.c
@@ -529,7 +529,7 @@ static bool blk_crypto_fallback_inited;
static int blk_crypto_fallback_init(void)
{
int i;
- int err = -ENOMEM;
+ int err;
if (blk_crypto_fallback_inited)
return 0;