Commit 13b7e013 authored by Payal Kshirsagar's avatar Payal Kshirsagar Committed by Greg Kroah-Hartman

staging: rtl8723bs: hal: sdio_ops.c: Remove unnecessary parentheses

Challenge suggested by coccinelle.
Remove unnecessary parentheses around expressions.
Signed-off-by: default avatarPayal Kshirsagar <payal.s.kshirsagar.98@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 41604797
...@@ -550,7 +550,7 @@ static s32 _sdio_local_read( ...@@ -550,7 +550,7 @@ static s32 _sdio_local_read(
n = RND4(cnt); n = RND4(cnt);
tmpbuf = rtw_malloc(n); tmpbuf = rtw_malloc(n);
if (!tmpbuf) if (!tmpbuf)
return (-1); return -1;
err = _sd_read(intfhdl, addr, n, tmpbuf); err = _sd_read(intfhdl, addr, n, tmpbuf);
if (!err) if (!err)
...@@ -591,7 +591,7 @@ s32 sdio_local_read( ...@@ -591,7 +591,7 @@ s32 sdio_local_read(
n = RND4(cnt); n = RND4(cnt);
tmpbuf = rtw_malloc(n); tmpbuf = rtw_malloc(n);
if (!tmpbuf) if (!tmpbuf)
return (-1); return -1;
err = sd_read(intfhdl, addr, n, tmpbuf); err = sd_read(intfhdl, addr, n, tmpbuf);
if (!err) if (!err)
...@@ -636,7 +636,7 @@ s32 sdio_local_write( ...@@ -636,7 +636,7 @@ s32 sdio_local_write(
tmpbuf = rtw_malloc(cnt); tmpbuf = rtw_malloc(cnt);
if (!tmpbuf) if (!tmpbuf)
return (-1); return -1;
memcpy(tmpbuf, buf, cnt); memcpy(tmpbuf, buf, cnt);
......
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