From: navin patidar Date: Mon, 28 Jul 2014 17:41:30 +0000 (+0530) Subject: staging: rtl8188eu: Remove wrapper function _rtw_reordering_ctrl_timeout_handler() X-Git-Tag: android-x86-4.4-r2~729^2~39 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7ebd4cba670a1eb7fb50c131ef6eae83ddb2e73b;p=android-x86%2Fkernel.git staging: rtl8188eu: Remove wrapper function _rtw_reordering_ctrl_timeout_handler() Signed-off-by: navin patidar Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8188eu/os_dep/recv_linux.c b/drivers/staging/rtl8188eu/os_dep/recv_linux.c index f7d53dd370b7..05427c489b3f 100644 --- a/drivers/staging/rtl8188eu/os_dep/recv_linux.c +++ b/drivers/staging/rtl8188eu/os_dep/recv_linux.c @@ -191,17 +191,9 @@ _recv_indicatepkt_drop: 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); }