Julia Lawall bd9c504bfd iwlwifi: dvm: main: 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.data = d;
-t.function = f;
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
2014-12-28 20:00:22 +02:00
..
2014-02-13 10:18:43 +02:00
2014-05-13 13:52:19 +03:00
2013-12-31 19:03:53 +02:00
2014-05-13 13:52:19 +03:00
2014-05-06 20:40:05 +03:00
2014-05-13 13:52:19 +03:00
2014-05-06 20:40:05 +03:00
2014-12-28 20:00:22 +02:00
2014-05-06 20:40:05 +03:00
2013-12-31 19:03:53 +02:00
2014-05-13 13:52:19 +03:00
2014-05-13 13:52:19 +03:00
2014-05-13 13:52:19 +03:00
2014-12-28 20:00:22 +02:00
2013-12-31 19:03:53 +02:00
2014-05-13 13:52:19 +03:00