Skip to content

Commit

Permalink
s390/cio: remove weird assignment during argument evaluation
Browse files Browse the repository at this point in the history
Get rid of a useless assignment during argument evaluation.

No functional change.

Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Sebastian Ott authored and Martin Schwidefsky committed May 27, 2014
1 parent b6f4296 commit 6adbc92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/s390/cio/ccwreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static u16 ccwreq_next_path(struct ccw_device *cdev)
goto out;
}
req->retries = req->maxretries;
req->mask = lpm_adjust(req->mask >>= 1, req->lpm);
req->mask = lpm_adjust(req->mask >> 1, req->lpm);
out:
return req->mask;
}
Expand Down

0 comments on commit 6adbc92

Please sign in to comment.