Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f39a3d15 authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723au: Fold _rtw_free_cmd_priv23a() into rtw_free_cmd_priv23a()

parent fdedd9fa
Loading
Loading
Loading
Loading
+5 −9
Original line number Diff line number Diff line
@@ -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)
+0 −1
Original line number Diff line number Diff line
@@ -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