mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 15:43:59 +08:00
staging: rtl8188eu: cleanup long lines in rtw_wlan_util.c
Cleanup some lines over 80 characters by adding appropriate line breaks and removing commented code. Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
54b48fda9c
commit
3a3b5defd3
@ -379,7 +379,8 @@ int is_client_associated_to_ap(struct adapter *padapter)
|
||||
pmlmeext = &padapter->mlmeextpriv;
|
||||
pmlmeinfo = &pmlmeext->mlmext_info;
|
||||
|
||||
if ((pmlmeinfo->state & WIFI_FW_ASSOC_SUCCESS) && ((pmlmeinfo->state&0x03) == WIFI_FW_STATION_STATE))
|
||||
if ((pmlmeinfo->state & WIFI_FW_ASSOC_SUCCESS) &&
|
||||
(pmlmeinfo->state & 0x03) == WIFI_FW_STATION_STATE)
|
||||
return true;
|
||||
else
|
||||
return _FAIL;
|
||||
@ -390,7 +391,8 @@ int is_client_associated_to_ibss(struct adapter *padapter)
|
||||
struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
|
||||
struct mlme_ext_info *pmlmeinfo = &pmlmeext->mlmext_info;
|
||||
|
||||
if ((pmlmeinfo->state & WIFI_FW_ASSOC_SUCCESS) && ((pmlmeinfo->state&0x03) == WIFI_FW_ADHOC_STATE))
|
||||
if ((pmlmeinfo->state & WIFI_FW_ASSOC_SUCCESS) &&
|
||||
(pmlmeinfo->state & 0x03) == WIFI_FW_ADHOC_STATE)
|
||||
return true;
|
||||
else
|
||||
return _FAIL;
|
||||
@ -662,8 +664,6 @@ static void bwmode_update_check(struct adapter *padapter, struct ndis_802_11_var
|
||||
struct wlan_bssid_ex *cur_network = &pmlmeinfo->network;
|
||||
struct sta_priv *pstapriv = &padapter->stapriv;
|
||||
|
||||
/* set_channel_bwmode(padapter, pmlmeext->cur_channel, pmlmeext->cur_ch_offset, pmlmeext->cur_bwmode); */
|
||||
|
||||
/* update ap's stainfo */
|
||||
psta = rtw_get_stainfo(pstapriv, cur_network->MacAddress);
|
||||
if (psta) {
|
||||
|
Loading…
Reference in New Issue
Block a user