staging: rtl8723au: Remove unnecessary parantheses

Removed parantheses on the right hand side of assignments as they are
not needed.

This was done with Coccinelle:

@@ expression a, b; @@

a =
- (
b
- )
;

Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bhaktipriya Shridhar 2016-02-22 22:37:00 +05:30 committed by Greg Kroah-Hartman
parent 4b279420ac
commit 4e7c855eae
1 changed files with 2 additions and 2 deletions

View File

@ -458,7 +458,7 @@ static int set_group_key(struct rtw_adapter *padapter, struct key_params *parms,
pcmd->cmdcode = _SetKey_CMD_; pcmd->cmdcode = _SetKey_CMD_;
pcmd->parmbuf = (u8 *) psetkeyparm; pcmd->parmbuf = (u8 *) psetkeyparm;
pcmd->cmdsz = (sizeof(struct setkey_parm)); pcmd->cmdsz = sizeof(struct setkey_parm);
pcmd->rsp = NULL; pcmd->rsp = NULL;
pcmd->rspsz = 0; pcmd->rspsz = 0;
@ -2197,7 +2197,7 @@ static int cfg80211_rtw_get_txpower(struct wiphy *wiphy,
struct wireless_dev *wdev, int *dbm) struct wireless_dev *wdev, int *dbm)
{ {
DBG_8723A("%s\n", __func__); DBG_8723A("%s\n", __func__);
*dbm = (12); *dbm = 12;
return 0; return 0;
} }