Commit e4a1c3f8 authored by Julia Lawall's avatar Julia Lawall Committed by Kalle Valo

mwifiex: 11n_rxreorder: Use setup_timer

Convert a call to init_timer and accompanying intializations of
the timer's data and function fields to a call to setup_timer.

A simplified version of the semantic match that fixes this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
expression t,f,d;
@@

-init_timer(&t);
+setup_timer(&t,f,d);
-t.function = f;
-t.data = d;
// </smpl>
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent c6c33e77
...@@ -391,10 +391,8 @@ mwifiex_11n_create_rx_reorder_tbl(struct mwifiex_private *priv, u8 *ta, ...@@ -391,10 +391,8 @@ mwifiex_11n_create_rx_reorder_tbl(struct mwifiex_private *priv, u8 *ta,
new_node->timer_context.priv = priv; new_node->timer_context.priv = priv;
new_node->timer_context.timer_is_set = false; new_node->timer_context.timer_is_set = false;
init_timer(&new_node->timer_context.timer); setup_timer(&new_node->timer_context.timer, mwifiex_flush_data,
new_node->timer_context.timer.function = mwifiex_flush_data; (unsigned long)&new_node->timer_context);
new_node->timer_context.timer.data =
(unsigned long) &new_node->timer_context;
for (i = 0; i < win_size; ++i) for (i = 0; i < win_size; ++i)
new_node->rx_reorder_ptr[i] = NULL; new_node->rx_reorder_ptr[i] = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment