mirror of https://gitee.com/openkylin/linux.git
Staging: rtl8723au: rtw_cmd: Replace foo*bar to foo *bar
Fixed the checkpatch.pl ERROR: "foo*bar" should be "foo *bar" Signed-off-by: anuvazhayil <anuv.1994@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b32af401fc
commit
a58af1e1ce
|
@ -601,7 +601,7 @@ int rtw_joinbss_cmd23a(struct rtw_adapter *padapter,
|
|||
return res;
|
||||
}
|
||||
|
||||
int rtw_disassoc_cmd23a(struct rtw_adapter*padapter, u32 deauth_timeout_ms,
|
||||
int rtw_disassoc_cmd23a(struct rtw_adapter *padapter, u32 deauth_timeout_ms,
|
||||
bool enqueue)
|
||||
{
|
||||
struct cmd_obj *cmdobj = NULL;
|
||||
|
@ -789,7 +789,7 @@ int rtw_clearstakey_cmd23a(struct rtw_adapter *padapter, u8 *psta, u8 entry,
|
|||
return res;
|
||||
}
|
||||
|
||||
int rtw_addbareq_cmd23a(struct rtw_adapter*padapter, u8 tid, u8 *addr)
|
||||
int rtw_addbareq_cmd23a(struct rtw_adapter *padapter, u8 tid, u8 *addr)
|
||||
{
|
||||
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
|
||||
struct cmd_obj *ph2c;
|
||||
|
@ -825,7 +825,7 @@ int rtw_addbareq_cmd23a(struct rtw_adapter*padapter, u8 tid, u8 *addr)
|
|||
return res;
|
||||
}
|
||||
|
||||
int rtw_dynamic_chk_wk_cmd23a(struct rtw_adapter*padapter)
|
||||
int rtw_dynamic_chk_wk_cmd23a(struct rtw_adapter *padapter)
|
||||
{
|
||||
struct cmd_obj *ph2c;
|
||||
struct drvextra_cmd_parm *pdrvextra_cmd_parm;
|
||||
|
@ -862,7 +862,7 @@ int rtw_dynamic_chk_wk_cmd23a(struct rtw_adapter*padapter)
|
|||
* This is only ever called from on_action_spct23a_ch_switch () which isn't
|
||||
* called from anywhere itself
|
||||
*/
|
||||
int rtw_set_ch_cmd23a(struct rtw_adapter*padapter, u8 ch, u8 bw, u8 ch_offset,
|
||||
int rtw_set_ch_cmd23a(struct rtw_adapter *padapter, u8 ch, u8 bw, u8 ch_offset,
|
||||
u8 enqueue)
|
||||
{
|
||||
struct cmd_obj *pcmdobj;
|
||||
|
@ -1100,7 +1100,7 @@ int rtw_lps_ctrl_wk_cmd23a(struct rtw_adapter *padapter,
|
|||
return res;
|
||||
}
|
||||
|
||||
int rtw_ps_cmd23a(struct rtw_adapter*padapter)
|
||||
int rtw_ps_cmd23a(struct rtw_adapter *padapter)
|
||||
{
|
||||
struct cmd_obj *ppscmd;
|
||||
struct drvextra_cmd_parm *pdrvextra_cmd_parm;
|
||||
|
@ -1170,7 +1170,7 @@ static void rtw_chk_hi_queue_hdl(struct rtw_adapter *padapter)
|
|||
}
|
||||
}
|
||||
|
||||
int rtw_chk_hi_queue_cmd23a(struct rtw_adapter*padapter)
|
||||
int rtw_chk_hi_queue_cmd23a(struct rtw_adapter *padapter)
|
||||
{
|
||||
struct cmd_obj *ph2c;
|
||||
struct drvextra_cmd_parm *pdrvextra_cmd_parm;
|
||||
|
|
Loading…
Reference in New Issue