lab.nexedi.com will be down from Thursday, 20 March 2025, 07:30:00 UTC for a duration of approximately 2 hours

Commit 6adbc923 authored by Sebastian Ott's avatar Sebastian Ott Committed by Martin Schwidefsky

s390/cio: remove weird assignment during argument evaluation

Get rid of a useless assignment during argument evaluation.

No functional change.
Signed-off-by: default avatarSebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent b6f42962
...@@ -46,7 +46,7 @@ static u16 ccwreq_next_path(struct ccw_device *cdev) ...@@ -46,7 +46,7 @@ static u16 ccwreq_next_path(struct ccw_device *cdev)
goto out; goto out;
} }
req->retries = req->maxretries; req->retries = req->maxretries;
req->mask = lpm_adjust(req->mask >>= 1, req->lpm); req->mask = lpm_adjust(req->mask >> 1, req->lpm);
out: out:
return req->mask; return req->mask;
} }
......
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