From: Bhaktipriya Shridhar Date: Mon, 22 Feb 2016 17:09:00 +0000 (+0530) Subject: staging: rtl8712: Remove unnecessary parantheses X-Git-Tag: v4.6-rc1~103^2~177 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bb106dc0e227f7a04d9034cad25913b3c21146a8;p=karo-tx-linux.git staging: rtl8712: 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8712/ieee80211.c b/drivers/staging/rtl8712/ieee80211.c index 974ca021ccef..d13b4d53c256 100644 --- a/drivers/staging/rtl8712/ieee80211.c +++ b/drivers/staging/rtl8712/ieee80211.c @@ -376,7 +376,7 @@ int r8712_get_sec_ie(u8 *in_ie, uint in_len, u8 *rsn_ie, u16 *rsn_len, uint cnt; /*Search required WPA or WPA2 IE and copy to sec_ie[ ]*/ - cnt = (_TIMESTAMP_ + _BEACON_ITERVAL_ + _CAPABILITY_); + cnt = _TIMESTAMP_ + _BEACON_ITERVAL_ + _CAPABILITY_; while (cnt < in_len) { authmode = in_ie[cnt]; if ((authmode == _WPA_IE_ID_) &&