staging: rtl8723au: Fold _rtw_free_cmd_priv23a() into rtw_free_cmd_priv23a()
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fdedd9fab0
commit
f39a3d1598
|
@ -250,14 +250,6 @@ void _rtw_free_evt_priv23a (struct evt_priv *pevtpriv)
|
|||
("-_rtw_free_evt_priv23a\n"));
|
||||
}
|
||||
|
||||
void _rtw_free_cmd_priv23a(struct cmd_priv *pcmdpriv)
|
||||
{
|
||||
if (pcmdpriv) {
|
||||
kfree(pcmdpriv->cmd_allocated_buf);
|
||||
kfree(pcmdpriv->rsp_allocated_buf);
|
||||
}
|
||||
}
|
||||
|
||||
u32 rtw_init_evt_priv23a(struct evt_priv *pevtpriv)
|
||||
{
|
||||
int res;
|
||||
|
@ -278,7 +270,11 @@ void rtw_free_cmd_priv23a(struct cmd_priv *pcmdpriv)
|
|||
{
|
||||
RT_TRACE(_module_rtl871x_cmd_c_, _drv_info_,
|
||||
("rtw_free_cmd_priv23a\n"));
|
||||
_rtw_free_cmd_priv23a(pcmdpriv);
|
||||
|
||||
if (pcmdpriv) {
|
||||
kfree(pcmdpriv->cmd_allocated_buf);
|
||||
kfree(pcmdpriv->rsp_allocated_buf);
|
||||
}
|
||||
}
|
||||
|
||||
static int rtw_cmd_filter(struct cmd_priv *pcmdpriv, struct cmd_obj *cmd_obj)
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
|
||||
int _rtw_init_evt_priv23a(struct evt_priv *pevtpriv);
|
||||
void _rtw_free_evt_priv23a(struct evt_priv *pevtpriv);
|
||||
void _rtw_free_cmd_priv23a(struct cmd_priv *pcmdpriv);
|
||||
int _rtw_enqueue_cmd23a(struct rtw_queue *queue, struct cmd_obj *obj);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue