Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90beb2e7 authored by Jens Axboe's avatar Jens Axboe
Browse files

mtip32xx: remove unneeded variable in mtip_cmd_timeout()



We always return BLK_EH_RESET_TIMER, so no point in storing that in
an integer.

Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent afb18e0e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3878,7 +3878,6 @@ static enum blk_eh_timer_return mtip_cmd_timeout(struct request *req,
								bool reserved)
{
	struct driver_data *dd = req->q->queuedata;
	int ret = BLK_EH_RESET_TIMER;

	if (reserved)
		goto exit_handler;
@@ -3891,7 +3890,7 @@ static enum blk_eh_timer_return mtip_cmd_timeout(struct request *req,

	wake_up_interruptible(&dd->port->svc_wait);
exit_handler:
	return ret;
	return BLK_EH_RESET_TIMER;
}

static struct blk_mq_ops mtip_mq_ops = {