Commit 9fd4af8a authored by Tina Johnson's avatar Tina Johnson Committed by Greg Kroah-Hartman

Staging: rts5208: 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: default avatarTina Johnson <tinajohnson.1234@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent db9c9305
...@@ -539,7 +539,7 @@ static int rtsx_transfer_sglist_adma(struct rtsx_chip *chip, u8 card, ...@@ -539,7 +539,7 @@ static int rtsx_transfer_sglist_adma(struct rtsx_chip *chip, u8 card,
if (i == buf_cnt / (HOST_SG_TBL_BUF_LEN / 8)) if (i == buf_cnt / (HOST_SG_TBL_BUF_LEN / 8))
sg_cnt = buf_cnt % (HOST_SG_TBL_BUF_LEN / 8); sg_cnt = buf_cnt % (HOST_SG_TBL_BUF_LEN / 8);
else else
sg_cnt = (HOST_SG_TBL_BUF_LEN / 8); sg_cnt = HOST_SG_TBL_BUF_LEN / 8;
chip->sgi = 0; chip->sgi = 0;
for (j = 0; j < sg_cnt; j++) { for (j = 0; j < sg_cnt; j++) {
......
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