Files
linux/drivers/net
Amitoj Kaur Chawla de55558dc4 forcedeth: 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.

The Coccinelle semantic patch that fixes this problem is
as follows:

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

-init_timer(&t);
+setup_timer(&t,f,d);
-t.data = d;
-t.function = f;
// </smpl>

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-02-25 16:51:05 -05:00
..
2016-02-25 16:51:05 -05:00
2016-01-25 10:51:52 -08:00
2015-11-15 17:09:23 -05:00
2016-02-21 22:43:24 -05:00
2016-02-13 06:10:21 -05:00
2015-10-21 19:36:10 -07:00
2015-10-13 04:55:07 -07:00
2016-02-17 15:19:44 -05:00
2015-12-17 15:25:57 -05:00
2016-02-11 09:45:24 -05:00