forked from Minki/linux
Staging: slicoss: Removed unnecessary parentheses
Unnecessary parentheses around the right hand side of an assignment is removed using the following semantic patch: @@ identifier x,f; constant C; @@ ( -x = (f / C ); +x = f / C ; | -x = (f % C ); +x = f % C ; ) Signed-off-by: Tina Johnson <tinajohnson.1234@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
dfd94488a8
commit
db9c930570
@ -1611,7 +1611,7 @@ static int slic_rcvqueue_init(struct adapter *adapter)
|
||||
rcvq->size = SLIC_RCVQ_ENTRIES;
|
||||
rcvq->errors = 0;
|
||||
rcvq->count = 0;
|
||||
i = (SLIC_RCVQ_ENTRIES / SLIC_RCVQ_FILLENTRIES);
|
||||
i = SLIC_RCVQ_ENTRIES / SLIC_RCVQ_FILLENTRIES;
|
||||
count = 0;
|
||||
while (i) {
|
||||
count += slic_rcvqueue_fill(adapter);
|
||||
|
Loading…
Reference in New Issue
Block a user