Staging: rtl8712: Remove function r8712_setptm_cmd and r8712_gettssi_cmd
The function r8712_setptm_cmd and r8712_gettssi_cmd are not used anywhere in the kernel so remove them. Also, remove their function prototypes. Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
336e8320e9
commit
0df56d78d2
|
@ -315,27 +315,6 @@ u8 r8712_setbasicrate_cmd(struct _adapter *padapter, u8 *rateset)
|
|||
return _SUCCESS;
|
||||
}
|
||||
|
||||
/* power tracking mechanism setting */
|
||||
u8 r8712_setptm_cmd(struct _adapter *padapter, u8 type)
|
||||
{
|
||||
struct cmd_obj *ph2c;
|
||||
struct writePTM_parm *pwriteptmparm;
|
||||
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
|
||||
|
||||
ph2c = kmalloc(sizeof(*ph2c), GFP_ATOMIC);
|
||||
if (ph2c == NULL)
|
||||
return _FAIL;
|
||||
pwriteptmparm = kmalloc(sizeof(*pwriteptmparm), GFP_ATOMIC);
|
||||
if (pwriteptmparm == NULL) {
|
||||
kfree(ph2c);
|
||||
return _FAIL;
|
||||
}
|
||||
init_h2fwcmd_w_parm_no_rsp(ph2c, pwriteptmparm, GEN_CMD_CODE(_SetPT));
|
||||
pwriteptmparm->type = type;
|
||||
r8712_enqueue_cmd(pcmdpriv, ph2c);
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
u8 r8712_setfwdig_cmd(struct _adapter *padapter, u8 type)
|
||||
{
|
||||
struct cmd_obj *ph2c;
|
||||
|
@ -730,32 +709,6 @@ u8 r8712_setrttbl_cmd(struct _adapter *padapter,
|
|||
return _SUCCESS;
|
||||
}
|
||||
|
||||
u8 r8712_gettssi_cmd(struct _adapter *padapter, u8 offset, u8 *pval)
|
||||
{
|
||||
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
|
||||
struct cmd_obj *ph2c;
|
||||
struct readTSSI_parm *prdtssiparm;
|
||||
|
||||
ph2c = kmalloc(sizeof(*ph2c), GFP_ATOMIC);
|
||||
if (ph2c == NULL)
|
||||
return _FAIL;
|
||||
prdtssiparm = kmalloc(sizeof(*prdtssiparm), GFP_ATOMIC);
|
||||
if (prdtssiparm == NULL) {
|
||||
kfree(ph2c);
|
||||
return _FAIL;
|
||||
}
|
||||
INIT_LIST_HEAD(&ph2c->list);
|
||||
ph2c->cmdcode = GEN_CMD_CODE(_ReadTSSI);
|
||||
ph2c->parmbuf = (unsigned char *)prdtssiparm;
|
||||
ph2c->cmdsz = sizeof(struct readTSSI_parm);
|
||||
ph2c->rsp = pval;
|
||||
ph2c->rspsz = sizeof(struct readTSSI_rsp);
|
||||
|
||||
prdtssiparm->offset = offset;
|
||||
r8712_enqueue_cmd(pcmdpriv, ph2c);
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
u8 r8712_setMacAddr_cmd(struct _adapter *padapter, u8 *mac_addr)
|
||||
{
|
||||
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
|
||||
|
|
|
@ -736,8 +736,6 @@ 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);
|
||||
u8 r8712_gettssi_cmd(struct _adapter *padapter, u8 offset, u8 *pval);
|
||||
u8 r8712_setptm_cmd(struct _adapter *padapter, u8 type);
|
||||
u8 r8712_setfwdig_cmd(struct _adapter *padapter, u8 type);
|
||||
u8 r8712_setfwra_cmd(struct _adapter *padapter, u8 type);
|
||||
u8 r8712_addbareq_cmd(struct _adapter *padapter, u8 tid);
|
||||
|
|
Loading…
Reference in New Issue