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

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
......@@ -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 = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment