mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-17 21:36:09 +07:00
staging: rtl8712: Remove function r8712_setrfintfs_cmd()
Remove unused function r8712_setrfintfs_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
8cb9a36ebf
commit
7a7213b08a
@ -585,27 +585,6 @@ void r8712_setstakey_cmd(struct _adapter *padapter, u8 *psta, u8 unicast_key)
|
||||
r8712_enqueue_cmd(pcmdpriv, ph2c);
|
||||
}
|
||||
|
||||
u8 r8712_setrfintfs_cmd(struct _adapter *padapter, u8 mode)
|
||||
{
|
||||
struct cmd_obj *ph2c;
|
||||
struct setrfintfs_parm *psetrfintfsparm;
|
||||
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
|
||||
|
||||
ph2c = kmalloc(sizeof(*ph2c), GFP_ATOMIC);
|
||||
if (!ph2c)
|
||||
return _FAIL;
|
||||
psetrfintfsparm = kmalloc(sizeof(*psetrfintfsparm), GFP_ATOMIC);
|
||||
if (!psetrfintfsparm) {
|
||||
kfree(ph2c);
|
||||
return _FAIL;
|
||||
}
|
||||
init_h2fwcmd_w_parm_no_rsp(ph2c, psetrfintfsparm,
|
||||
GEN_CMD_CODE(_SetRFIntFs));
|
||||
psetrfintfsparm->rfintfs = mode;
|
||||
r8712_enqueue_cmd(pcmdpriv, ph2c);
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
u8 r8712_setrttbl_cmd(struct _adapter *padapter,
|
||||
struct setratable_parm *prate_table)
|
||||
{
|
||||
|
@ -722,7 +722,6 @@ void r8712_setopmode_cmd(struct _adapter *padapter,
|
||||
int r8712_setdatarate_cmd(struct _adapter *padapter, u8 *rateset);
|
||||
void r8712_set_chplan_cmd(struct _adapter *padapter, int chplan);
|
||||
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);
|
||||
u8 r8712_setrttbl_cmd(struct _adapter *padapter,
|
||||
struct setratable_parm *prate_table);
|
||||
|
Loading…
Reference in New Issue
Block a user