[PATCH] cxlflash: superpipe.c: remove unneeded variable

From: Saurav Girepunje
Date: Mon Oct 28 2019 - 16:54:28 EST


Remove unneeded variable rc as it is not modified in function.

Signed-off-by: Saurav Girepunje <saurav.girepunje@xxxxxxxxx>
---
drivers/scsi/cxlflash/superpipe.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/cxlflash/superpipe.c b/drivers/scsi/cxlflash/superpipe.c
index 593669ac3669..4ca64cdec438 100644
--- a/drivers/scsi/cxlflash/superpipe.c
+++ b/drivers/scsi/cxlflash/superpipe.c
@@ -1233,7 +1233,7 @@ const struct file_operations cxlflash_cxl_fops = {
*/
int cxlflash_mark_contexts_error(struct cxlflash_cfg *cfg)
{
- int i, rc = 0;
+ int i;
struct ctx_info *ctxi = NULL;

mutex_lock(&cfg->ctx_tbl_list_mutex);
@@ -1252,7 +1252,7 @@ int cxlflash_mark_contexts_error(struct cxlflash_cfg *cfg)
}

mutex_unlock(&cfg->ctx_tbl_list_mutex);
- return rc;
+ return 0;
}

/*
--
2.20.1