diff options
author | navin patidar <navin.patidar@gmail.com> | 2014-07-28 13:41:30 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-30 20:16:10 -0400 |
commit | 7ebd4cba670a1eb7fb50c131ef6eae83ddb2e73b (patch) | |
tree | 4db89d41f355ee82fa952d908e7ed9726857bf61 | |
parent | a16d66b8fe4b21aad81b2c88c11fba80d4040621 (diff) |
staging: rtl8188eu: Remove wrapper function _rtw_reordering_ctrl_timeout_handler()
Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8188eu/os_dep/recv_linux.c | 10 |
1 files changed, 1 insertions, 9 deletions
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: | |||
191 | return _FAIL; | 191 | return _FAIL; |
192 | } | 192 | } |
193 | 193 | ||
194 | static void _rtw_reordering_ctrl_timeout_handler(void *func_context) | ||
195 | { | ||
196 | struct recv_reorder_ctrl *preorder_ctrl; | ||
197 | |||
198 | preorder_ctrl = (struct recv_reorder_ctrl *)func_context; | ||
199 | rtw_reordering_ctrl_timeout_handler(preorder_ctrl); | ||
200 | } | ||
201 | |||
202 | void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) | 194 | void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) |
203 | { | 195 | { |
204 | struct adapter *padapter = preorder_ctrl->padapter; | 196 | struct adapter *padapter = preorder_ctrl->padapter; |
205 | 197 | ||
206 | _init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter->pnetdev, _rtw_reordering_ctrl_timeout_handler, preorder_ctrl); | 198 | _init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter->pnetdev, rtw_reordering_ctrl_timeout_handler, preorder_ctrl); |
207 | } | 199 | } |