staging: r8188eu: remove rtw_setbasicrate_cmd()
Function rtw_setbasicrate_cmd() is not used, remove it. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20210923190920.3580-12-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
fb87fde0d5
Коммит
5116c5af51
|
@ -475,36 +475,6 @@ exit:
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
u8 rtw_setbasicrate_cmd(struct adapter *padapter, u8 *rateset)
|
|
||||||
{
|
|
||||||
struct cmd_obj *ph2c;
|
|
||||||
struct setbasicrate_parm *pssetbasicratepara;
|
|
||||||
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
|
|
||||||
u8 res = _SUCCESS;
|
|
||||||
|
|
||||||
ph2c = kzalloc(sizeof(struct cmd_obj), GFP_ATOMIC);
|
|
||||||
if (!ph2c) {
|
|
||||||
res = _FAIL;
|
|
||||||
goto exit;
|
|
||||||
}
|
|
||||||
pssetbasicratepara = kzalloc(sizeof(struct setbasicrate_parm), GFP_ATOMIC);
|
|
||||||
|
|
||||||
if (!pssetbasicratepara) {
|
|
||||||
kfree(ph2c);
|
|
||||||
res = _FAIL;
|
|
||||||
goto exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
init_h2fwcmd_w_parm_no_rsp(ph2c, pssetbasicratepara, _SetBasicRate_CMD_);
|
|
||||||
|
|
||||||
memcpy(pssetbasicratepara->basicrates, rateset, NumRates);
|
|
||||||
|
|
||||||
res = rtw_enqueue_cmd(pcmdpriv, ph2c);
|
|
||||||
exit:
|
|
||||||
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
unsigned char rtw_setphy_cmd(unsigned char *adapter)
|
unsigned char rtw_setphy_cmd(unsigned char *adapter)
|
||||||
|
|
||||||
|
|
|
@ -756,7 +756,6 @@ u8 rtw_joinbss_cmd(struct adapter *padapter, struct wlan_network* pnetwork);
|
||||||
u8 rtw_disassoc_cmd(struct adapter *padapter, u32 deauth_timeout_ms, bool enqueue);
|
u8 rtw_disassoc_cmd(struct adapter *padapter, u32 deauth_timeout_ms, bool enqueue);
|
||||||
u8 rtw_setopmode_cmd(struct adapter *padapter, enum ndis_802_11_network_infra networktype);
|
u8 rtw_setopmode_cmd(struct adapter *padapter, enum ndis_802_11_network_infra networktype);
|
||||||
u8 rtw_setdatarate_cmd(struct adapter *padapter, u8 *rateset);
|
u8 rtw_setdatarate_cmd(struct adapter *padapter, u8 *rateset);
|
||||||
u8 rtw_setbasicrate_cmd(struct adapter *padapter, u8 *rateset);
|
|
||||||
u8 rtw_setbbreg_cmd(struct adapter * padapter, u8 offset, u8 val);
|
u8 rtw_setbbreg_cmd(struct adapter * padapter, u8 offset, u8 val);
|
||||||
u8 rtw_setrfreg_cmd(struct adapter * padapter, u8 offset, u32 val);
|
u8 rtw_setrfreg_cmd(struct adapter * padapter, u8 offset, u32 val);
|
||||||
u8 rtw_setrfintfs_cmd(struct adapter *padapter, u8 mode);
|
u8 rtw_setrfintfs_cmd(struct adapter *padapter, u8 mode);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче