staging: wlan-ng: cfg80211: Remove unnecessary parentheses around variables
authorsayli karnik <karniksayli1995@gmail.com>
Mon, 10 Oct 2016 16:23:10 +0000 (21:53 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Oct 2016 08:26:25 +0000 (10:26 +0200)
The patch fixes the checkpatch.pl check:
CHECK: Unnecessary parentheses around variable

Signed-off-by: sayli karnik <karniksayli1995@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/cfg80211.c

index 67c48a8..aa0e5a3 100644 (file)
@@ -375,13 +375,13 @@ static int prism2_scan(struct wiphy *wiphy,
                ie_buf[0] = WLAN_EID_SSID;
                ie_buf[1] = msg2.ssid.data.len;
                ie_len = ie_buf[1] + 2;
-               memcpy(&ie_buf[2], &(msg2.ssid.data.data), msg2.ssid.data.len);
+               memcpy(&ie_buf[2], &msg2.ssid.data.data, msg2.ssid.data.len);
                freq = ieee80211_channel_to_frequency(msg2.dschannel.data,
                                                      NL80211_BAND_2GHZ);
                bss = cfg80211_inform_bss(wiphy,
                        ieee80211_get_channel(wiphy, freq),
                        CFG80211_BSS_FTYPE_UNKNOWN,
-                       (const u8 *)&(msg2.bssid.data.data),
+                       (const u8 *)&msg2.bssid.data.data,
                        msg2.timestamp.data, msg2.capinfo.data,
                        msg2.beaconperiod.data,
                        ie_buf,