From: Ana Rey Date: Sun, 16 Mar 2014 19:44:38 +0000 (+0100) Subject: staging: rtl8187se: Add whitespaces around '+=' and '==' X-Git-Tag: v3.15-rc1~139^2~340 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b254a306636d908f3b866c574a18102da4e9a34b;p=karo-tx-linux.git staging: rtl8187se: Add whitespaces around '+=' and '==' 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 Signed-off-by: Peter P Waskiewicz Jr --- diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c index 88ade1581386..2fba90b4e11a 100644 --- a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c +++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c @@ -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; @@ -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; @@ -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) { @@ -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) { @@ -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