nvme: remove superfluous else in nvme_ctrl_loss_tmo_store
authorDaniel Wagner <dwagner@suse.de>
Thu, 1 Apr 2021 09:54:11 +0000 (11:54 +0200)
committerChristoph Hellwig <hch@lst.de>
Fri, 2 Apr 2021 16:48:29 +0000 (18:48 +0200)
If there is an error we will leave the function early. So there
is no need for an else. Remove it.

Signed-off-by: Daniel Wagner <dwagner@suse.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/core.c

index b94a30e..d2b4c55 100644 (file)
@@ -3659,7 +3659,7 @@ static ssize_t nvme_ctrl_loss_tmo_store(struct device *dev,
        if (err)
                return -EINVAL;
 
-       else if (ctrl_loss_tmo < 0)
+       if (ctrl_loss_tmo < 0)
                opts->max_reconnects = -1;
        else
                opts->max_reconnects = DIV_ROUND_UP(ctrl_loss_tmo,