[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20180216075420.19269-1-yashomer0007@gmail.com>
Date: Fri, 16 Feb 2018 13:24:20 +0530
From: Yash Omer <yashomer0007@...il.com>
To: devel@...verdev.osuosl.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] Staging : wlan-ng: fix unnecessary parentheses in prism2mgmt.c
This patch fixes up unnecessary parentheses warning found by checkpatch.pl script.
Signed-off-by: Yash Omer <yashomer0007@...il.com>
---
drivers/staging/wlan-ng/prism2mgmt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/wlan-ng/prism2mgmt.c b/drivers/staging/wlan-ng/prism2mgmt.c
index 236961e3ba0d..90cc6cdaaaa8 100644
--- a/drivers/staging/wlan-ng/prism2mgmt.c
+++ b/drivers/staging/wlan-ng/prism2mgmt.c
@@ -1065,7 +1065,7 @@ int prism2mgmt_autojoin(struct wlandevice *wlandev, void *msgp)
/* Set the ssid */
memset(bytebuf, 0, 256);
- pstr = (struct p80211pstrd *)&(msg->ssid.data);
+ pstr = (struct p80211pstrd *)&msg->ssid.data;
prism2mgmt_pstr2bytestr(p2bytestr, pstr);
result = hfa384x_drvr_setconfig(hw, HFA384x_RID_CNFDESIREDSSID,
bytebuf,
--
2.14.3
Powered by blists - more mailing lists