s390/cio: remove weird assignment during argument evaluation
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>
This commit is contained in:
parent
b6f4296279
commit
6adbc9236b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue