From: Bhaktipriya Shridhar Date: Mon, 22 Feb 2016 17:08:03 +0000 (+0530) Subject: staging: rtl8188eu: Remove unnecessary parantheses X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=47b67704a1f72700e374ad5a50b9ce9c0939eed7;p=linux-beck.git staging: rtl8188eu: 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/rtl8188eu/core/rtw_ap.c b/drivers/staging/rtl8188eu/core/rtw_ap.c index 79d326ae18fe..47a740e19ddc 100644 --- a/drivers/staging/rtl8188eu/core/rtw_ap.c +++ b/drivers/staging/rtl8188eu/core/rtw_ap.c @@ -203,7 +203,7 @@ void rtw_add_bcn_ie(struct adapter *padapter, struct wlan_bssid_ex *pnetwork, if (bmatch) dst_ie = p; else - dst_ie = (p+ielen); + dst_ie = p+ielen; } if (remainder_ielen > 0) {