Skip to content

Commit

Permalink
staging: rtl8187se: Add whitespaces around '+=' and '=='
Browse files Browse the repository at this point in the history
Add whitespaces around '+=' and '==' and fix coding style in these lines
as the codingStyle of the kernel recommends.

Fix checkpatch.pl errors:
ERROR: spaces required around that '+=' (ctx:VxV
ERROR: spaces required around that '==' (ctx:VxW)

Signed-off-by: Ana Rey <anarey@gmail.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
  • Loading branch information
Ana Rey authored and Peter P Waskiewicz Jr committed Mar 17, 2014
1 parent 84f2610 commit b254a30
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ static struct sk_buff *ieee80211_probe_resp(struct ieee80211_device *ieee,
int rate_len = ieee->current_network.rates_len+2;
int rate_ex_len = ieee->current_network.rates_ex_len;
int wpa_ie_len = ieee->wpa_ie_len;
if (rate_ex_len > 0) rate_ex_len+=2;
if (rate_ex_len > 0) rate_ex_len += 2;

if (ieee->current_network.capability & WLAN_CAPABILITY_IBSS)
atim_len = 4;
Expand Down Expand Up @@ -718,9 +718,9 @@ static struct sk_buff *ieee80211_probe_resp(struct ieee80211_device *ieee,
tag += ssid_len;

*(tag++) = MFIE_TYPE_RATES;
*(tag++) = rate_len-2;
*(tag++) = rate_len - 2;
memcpy(tag, ieee->current_network.rates, rate_len-2);
tag+=rate_len-2;
tag += rate_len - 2;

*(tag++) = MFIE_TYPE_DS_SET;
*(tag++) = 1;
Expand All @@ -730,7 +730,7 @@ static struct sk_buff *ieee80211_probe_resp(struct ieee80211_device *ieee,
*(tag++) = MFIE_TYPE_IBSS_SET;
*(tag++) = 2;
*((u16*)(tag)) = cpu_to_le16(ieee->current_network.atim_window);
tag+=2;
tag += 2;
}

if (erp_len) {
Expand All @@ -743,7 +743,7 @@ static struct sk_buff *ieee80211_probe_resp(struct ieee80211_device *ieee,
*(tag++) = MFIE_TYPE_RATES_EX;
*(tag++) = rate_ex_len-2;
memcpy(tag, ieee->current_network.rates_ex, rate_ex_len-2);
tag+=rate_ex_len-2;
tag += rate_ex_len - 2;
}

if (wpa_ie_len) {
Expand Down Expand Up @@ -1179,13 +1179,13 @@ inline void ieee80211_softmac_new_net(struct ieee80211_device *ieee,
*/
apset = ieee->wap_set;
ssidset = ieee->ssid_set;
ssidbroad = !(net->ssid_len == 0 || net->ssid[0]== '\0');
apmatch = (memcmp(ieee->current_network.bssid, net->bssid, ETH_ALEN)==0);
ssidbroad = !(net->ssid_len == 0 || net->ssid[0] == '\0');
apmatch = (memcmp(ieee->current_network.bssid, net->bssid, ETH_ALEN) == 0);

if (ieee->current_network.ssid_len != net->ssid_len)
ssidmatch = 0;
else
ssidmatch = (0==strncmp(ieee->current_network.ssid, net->ssid, net->ssid_len));
ssidmatch = (0 == strncmp(ieee->current_network.ssid, net->ssid, net->ssid_len));

/* if the user set the AP check if match.
* if the network does not broadcast essid we check the user
Expand Down

0 comments on commit b254a30

Please sign in to comment.