staging: rtl8712: Remove function r8712_setbasicrate_cmd
Remove unused function r8712_setbasicrate_cmd. Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2e26e96672
commit
575922b1cf
|
@ -279,27 +279,6 @@ void r8712_set_chplan_cmd(struct _adapter *padapter, int chplan)
|
|||
r8712_enqueue_cmd(pcmdpriv, ph2c);
|
||||
}
|
||||
|
||||
u8 r8712_setbasicrate_cmd(struct _adapter *padapter, u8 *rateset)
|
||||
{
|
||||
struct cmd_obj *ph2c;
|
||||
struct setbasicrate_parm *pssetbasicratepara;
|
||||
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
|
||||
|
||||
ph2c = kmalloc(sizeof(*ph2c), GFP_ATOMIC);
|
||||
if (!ph2c)
|
||||
return _FAIL;
|
||||
pssetbasicratepara = kmalloc(sizeof(*pssetbasicratepara), GFP_ATOMIC);
|
||||
if (!pssetbasicratepara) {
|
||||
kfree(ph2c);
|
||||
return _FAIL;
|
||||
}
|
||||
init_h2fwcmd_w_parm_no_rsp(ph2c, pssetbasicratepara,
|
||||
_SetBasicRate_CMD_);
|
||||
memcpy(pssetbasicratepara->basicrates, rateset, NumRates);
|
||||
r8712_enqueue_cmd(pcmdpriv, ph2c);
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
u8 r8712_setfwdig_cmd(struct _adapter *padapter, u8 type)
|
||||
{
|
||||
struct cmd_obj *ph2c;
|
||||
|
|
|
@ -721,7 +721,6 @@ void r8712_setopmode_cmd(struct _adapter *padapter,
|
|||
enum NDIS_802_11_NETWORK_INFRASTRUCTURE networktype);
|
||||
int r8712_setdatarate_cmd(struct _adapter *padapter, u8 *rateset);
|
||||
void r8712_set_chplan_cmd(struct _adapter *padapter, int chplan);
|
||||
u8 r8712_setbasicrate_cmd(struct _adapter *padapter, u8 *rateset);
|
||||
u8 r8712_getrfreg_cmd(struct _adapter *padapter, u8 offset, u8 *pval);
|
||||
u8 r8712_setrfintfs_cmd(struct _adapter *padapter, u8 mode);
|
||||
u8 r8712_setrfreg_cmd(struct _adapter *padapter, u8 offset, u32 val);
|
||||
|
|
Loading…
Reference in New Issue