Skip to content

Commit

Permalink
staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_rx.c
Browse files Browse the repository at this point in the history
The following warnings fixed.
- WARNING: braces {} are not necessary for single statement blocks

Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
YAMANE Toshiaki authored and Greg Kroah-Hartman committed Nov 28, 2012
1 parent 73b612b commit 0f18f5b
Showing 1 changed file with 20 additions and 27 deletions.
47 changes: 20 additions & 27 deletions drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -505,13 +505,11 @@ int ieee80211_rtl_rx(struct ieee80211_device *ieee, struct sk_buff *skb,

//YJ,add,080828,for keep alive
if ((fc & IEEE80211_FCTL_TODS) != IEEE80211_FCTL_TODS) {
if (!memcmp(hdr->addr1, dev->dev_addr, ETH_ALEN)) {
if (!memcmp(hdr->addr1, dev->dev_addr, ETH_ALEN))
ieee->NumRxUnicast++;
}
} else {
if (!memcmp(hdr->addr3, dev->dev_addr, ETH_ALEN)) {
if (!memcmp(hdr->addr3, dev->dev_addr, ETH_ALEN))
ieee->NumRxUnicast++;
}
}
//YJ,add,080828,for keep alive,end

Expand Down Expand Up @@ -611,9 +609,8 @@ int ieee80211_rtl_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
type, stype, skb->len);
goto rx_dropped;
}
if (memcmp(bssid, ieee->current_network.bssid, ETH_ALEN)) {
if (memcmp(bssid, ieee->current_network.bssid, ETH_ALEN))
goto rx_dropped;
}

ieee->NumRxDataInPeriod++;
ieee->NumRxOkTotal++;
Expand Down Expand Up @@ -806,27 +803,27 @@ static inline int ieee80211_SignalStrengthTranslate(
int RetSS;

// Step 1. Scale mapping.
if (CurrSS >= 71 && CurrSS <= 100) {
if (CurrSS >= 71 && CurrSS <= 100)
RetSS = 90 + ((CurrSS - 70) / 3);
} else if (CurrSS >= 41 && CurrSS <= 70) {
else if (CurrSS >= 41 && CurrSS <= 70)
RetSS = 78 + ((CurrSS - 40) / 3);
} else if (CurrSS >= 31 && CurrSS <= 40) {
else if (CurrSS >= 31 && CurrSS <= 40)
RetSS = 66 + (CurrSS - 30);
} else if (CurrSS >= 21 && CurrSS <= 30) {
else if (CurrSS >= 21 && CurrSS <= 30)
RetSS = 54 + (CurrSS - 20);
} else if (CurrSS >= 5 && CurrSS <= 20) {
else if (CurrSS >= 5 && CurrSS <= 20)
RetSS = 42 + (((CurrSS - 5) * 2) / 3);
} else if (CurrSS == 4) {
else if (CurrSS == 4)
RetSS = 36;
} else if (CurrSS == 3) {
else if (CurrSS == 3)
RetSS = 27;
} else if (CurrSS == 2) {
else if (CurrSS == 2)
RetSS = 18;
} else if (CurrSS == 1) {
else if (CurrSS == 1)
RetSS = 9;
} else {
else
RetSS = CurrSS;
}

//RT_TRACE(COMP_DBG, DBG_LOUD, ("##### After Mapping: LastSS: %d, CurrSS: %d, RetSS: %d\n", LastSS, CurrSS, RetSS));

// Step 2. Smoothing.
Expand All @@ -848,19 +845,17 @@ static inline void ieee80211_extract_country_ie(
memcpy(network->CountryIeBuf, info_element->data, info_element->len);
network->CountryIeLen = info_element->len;

if (!IS_COUNTRY_IE_VALID(ieee)) {
if (!IS_COUNTRY_IE_VALID(ieee))
Dot11d_UpdateCountryIe(ieee, addr2, info_element->len, info_element->data);
}
}

//
// 070305, rcnjko: I update country IE watch dog here because
// some AP (e.g. Cisco 1242) don't include country IE in their
// probe response frame.
//
if (IS_EQUAL_CIE_SRC(ieee, addr2)) {
if (IS_EQUAL_CIE_SRC(ieee, addr2))
UPDATE_CIE_WATCHDOG(ieee);
}
}

}
Expand Down Expand Up @@ -1058,9 +1053,9 @@ inline int ieee80211_network_init(
// info_element->data[3+offset] ,
// info_element->data[3+offset] & (1<<(ieee->assoc_id%8)));

if (info_element->data[3+offset] & (1<<(ieee->assoc_id%8))) {
if (info_element->data[3+offset] & (1<<(ieee->assoc_id%8)))
network->dtim_data |= IEEE80211_DTIM_UCAST;
}

break;

case MFIE_TYPE_IBSS_SET:
Expand Down Expand Up @@ -1094,9 +1089,8 @@ inline int ieee80211_network_init(
info_element->data[4] == 0x02) {
network->Turbo_Enable = 1;
}
if (1 == stats->nic_type) {//nic 87
if (1 == stats->nic_type) //nic 87
break;
}

if (info_element->len >= 5 &&
info_element->data[0] == 0x00 &&
Expand Down Expand Up @@ -1210,9 +1204,8 @@ inline void update_network(struct ieee80211_network *dst,
unsigned char quality = src->stats.signalstrength;
unsigned char signal = 0;
unsigned char noise = 0;
if (dst->stats.signalstrength > 0) {
if (dst->stats.signalstrength > 0)
quality = (dst->stats.signalstrength * 5 + src->stats.signalstrength + 5)/6;
}
signal = ieee80211_TranslateToDbm(quality);
//noise = signal - src->stats.noise;
if (dst->stats.noise > 0)
Expand Down

0 comments on commit 0f18f5b

Please sign in to comment.