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:
Tina Johnson 2014-10-25 23:13:41 +05:30 committed by Greg Kroah-Hartman
parent dfd94488a8
commit db9c930570
1 changed files with 1 additions and 1 deletions

View File

@ -1611,7 +1611,7 @@ static int slic_rcvqueue_init(struct adapter *adapter)
rcvq->size = SLIC_RCVQ_ENTRIES; rcvq->size = SLIC_RCVQ_ENTRIES;
rcvq->errors = 0; rcvq->errors = 0;
rcvq->count = 0; rcvq->count = 0;
i = (SLIC_RCVQ_ENTRIES / SLIC_RCVQ_FILLENTRIES); i = SLIC_RCVQ_ENTRIES / SLIC_RCVQ_FILLENTRIES;
count = 0; count = 0;
while (i) { while (i) {
count += slic_rcvqueue_fill(adapter); count += slic_rcvqueue_fill(adapter);