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

Commit 7ebd4cba authored by navin patidar's avatar navin patidar Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: Remove wrapper function _rtw_reordering_ctrl_timeout_handler()

parent a16d66b8
Loading
Loading
Loading
Loading
+1 −9
Original line number Diff line number Diff line
@@ -191,17 +191,9 @@ int rtw_recv_indicatepkt(struct adapter *padapter,
	 return _FAIL;
}

static void _rtw_reordering_ctrl_timeout_handler(void *func_context)
{
	struct recv_reorder_ctrl *preorder_ctrl;

	preorder_ctrl = (struct recv_reorder_ctrl *)func_context;
	rtw_reordering_ctrl_timeout_handler(preorder_ctrl);
}

void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl)
{
	struct adapter *padapter = preorder_ctrl->padapter;

	_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter->pnetdev, _rtw_reordering_ctrl_timeout_handler, preorder_ctrl);
	_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter->pnetdev, rtw_reordering_ctrl_timeout_handler, preorder_ctrl);
}