mirror of https://gitee.com/openkylin/linux.git
staging: rtl8723au: Improve some bad switch() formatting
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f075870605
commit
b54e880440
|
@ -1350,45 +1350,32 @@ void update_beacon23a(struct rtw_adapter *padapter, u8 ie_id, u8 *oui, u8 tx)
|
|||
switch (ie_id)
|
||||
{
|
||||
case 0xFF:
|
||||
|
||||
update_bcn_fixed_ie(padapter);/* 8: TimeStamp, 2: Beacon Interval 2:Capability */
|
||||
|
||||
/* 8: TimeStamp, 2: Beacon Interval 2:Capability */
|
||||
update_bcn_fixed_ie(padapter);
|
||||
break;
|
||||
|
||||
case _TIM_IE_:
|
||||
|
||||
update_BCNTIM(padapter);
|
||||
|
||||
break;
|
||||
|
||||
case _ERPINFO_IE_:
|
||||
|
||||
update_bcn_erpinfo_ie(padapter);
|
||||
|
||||
break;
|
||||
|
||||
case _HT_CAPABILITY_IE_:
|
||||
|
||||
update_bcn_htcap_ie(padapter);
|
||||
|
||||
break;
|
||||
|
||||
case _RSN_IE_2_:
|
||||
|
||||
update_bcn_rsn_ie(padapter);
|
||||
|
||||
break;
|
||||
|
||||
case _HT_ADD_INFO_IE_:
|
||||
|
||||
update_bcn_htinfo_ie(padapter);
|
||||
|
||||
break;
|
||||
|
||||
case _VENDOR_SPECIFIC_IE_:
|
||||
|
||||
update_bcn_vendor_spec_ie(padapter, oui);
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
@ -2333,7 +2333,8 @@ void rtw_update_ht_cap23a(struct rtw_adapter *padapter, u8 *pie, uint ie_len)
|
|||
break;
|
||||
|
||||
default:
|
||||
pmlmeext->cur_ch_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
|
||||
pmlmeext->cur_ch_offset =
|
||||
HAL_PRIME_CHNL_OFFSET_DONT_CARE;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3588,7 +3588,8 @@ void p2p_ps_wk_hdl23a(struct rtw_adapter *padapter, u8 p2p_ps_state)
|
|||
if (pwdinfo->ctwindow > 0) {
|
||||
if (pwrpriv->smart_ps != 0) {
|
||||
pwrpriv->smart_ps = 0;
|
||||
DBG_8723A("%s(): Enter CTW, change SmartPS\n", __func__);
|
||||
DBG_8723A("%s(): Enter CTW, change "
|
||||
"SmartPS\n", __func__);
|
||||
rtl8723a_set_FwPwrMode_cmd(padapter, padapter->pwrctrlpriv.pwr_mode);
|
||||
}
|
||||
}
|
||||
|
@ -3601,15 +3602,12 @@ void p2p_ps_wk_hdl23a(struct rtw_adapter *padapter, u8 p2p_ps_state)
|
|||
case P2P_PS_ALLSTASLEEP:
|
||||
if (pwdinfo->p2p_ps_mode > P2P_PS_NONE) {
|
||||
pwdinfo->p2p_ps_state = p2p_ps_state;
|
||||
rtl8723a_set_p2p_ps_offload_cmd(padapter,
|
||||
p2p_ps_state);
|
||||
rtl8723a_set_p2p_ps_offload_cmd(padapter, p2p_ps_state);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
u8 p2p_ps_wk_cmd23a(struct rtw_adapter*padapter, u8 p2p_ps_state, u8 enqueue)
|
||||
|
|
Loading…
Reference in New Issue