staging: r8188eu: remove unused parameter from correct_TSF()
The parameter 'pmlmeext' of correct_TSF() is unused. Remove it. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20220715062908.8547-3-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3cc664a99e
commit
0f83ff0129
|
@ -6893,7 +6893,7 @@ void mlmeext_joinbss_event_callback(struct adapter *padapter, int join_res)
|
|||
|
||||
if ((pmlmeinfo->state & 0x03) == WIFI_FW_STATION_STATE) {
|
||||
/* correcting TSF */
|
||||
correct_TSF(padapter, pmlmeext);
|
||||
correct_TSF(padapter);
|
||||
}
|
||||
rtw_lps_ctrl_wk_cmd(padapter, LPS_CTRL_CONNECT, 0);
|
||||
}
|
||||
|
@ -6908,7 +6908,7 @@ void mlmeext_sta_add_event_callback(struct adapter *padapter, struct sta_info *p
|
|||
/* nothing to do */
|
||||
} else { /* adhoc client */
|
||||
/* correcting TSF */
|
||||
correct_TSF(padapter, pmlmeext);
|
||||
correct_TSF(padapter);
|
||||
|
||||
/* start beacon */
|
||||
if (send_beacon(padapter) == _FAIL) {
|
||||
|
|
|
@ -1586,7 +1586,7 @@ void update_TSF(struct mlme_ext_priv *pmlmeext, u8 *pframe, uint len)
|
|||
pmlmeext->TSFValue |= le32_to_cpu(*pbuf);
|
||||
}
|
||||
|
||||
void correct_TSF(struct adapter *padapter, struct mlme_ext_priv *pmlmeext)
|
||||
void correct_TSF(struct adapter *padapter)
|
||||
{
|
||||
SetHwReg8188EU(padapter, HW_VAR_CORRECT_TSF, NULL);
|
||||
}
|
||||
|
|
|
@ -597,7 +597,7 @@ bool cckrates_included(unsigned char *rate, int ratelen);
|
|||
bool cckratesonly_included(unsigned char *rate, int ratelen);
|
||||
|
||||
void update_TSF(struct mlme_ext_priv *pmlmeext, u8 *pframe, uint len);
|
||||
void correct_TSF(struct adapter *padapter, struct mlme_ext_priv *pmlmeext);
|
||||
void correct_TSF(struct adapter *padapter);
|
||||
|
||||
struct cmd_hdl {
|
||||
uint parmsize;
|
||||
|
|
Loading…
Reference in New Issue