From 47b67704a1f72700e374ad5a50b9ce9c0939eed7 Mon Sep 17 00:00:00 2001 From: Bhaktipriya Shridhar Date: Mon, 22 Feb 2016 22:38:03 +0530 Subject: [PATCH] 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 --- drivers/staging/rtl8188eu/core/rtw_ap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.11.0