Amitoj Kaur Chawla
466fc793da
atm: horizon: 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:
@@
expression t,d,f,e1;
identifier x1;
statement S1;
@@
(
-t.data = d;
|
-t.function = f;
|
-init_timer(&t);
+setup_timer(&t,f,d);
|
-init_timer_on_stack(&t);
+setup_timer_on_stack(&t,f,d);
)
<... when != S1
t.x1 = e1;
...>
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-07-01 05:58:26 -04:00
..
2016-06-24 23:36:20 +02:00
2016-05-05 19:00:40 +01:00
2016-06-28 12:11:31 -07:00
2016-07-01 05:58:26 -04:00
2016-06-18 06:04:01 -10:00
2016-05-24 11:00:20 -07:00
2016-06-24 17:23:52 -07:00
2016-05-13 16:54:59 +02:00
2016-05-19 10:02:26 -07:00
2016-06-13 08:56:28 -05:00
2016-06-01 15:14:06 -07:00
2016-05-19 11:27:09 -07:00
2016-06-28 08:48:33 -04:00
2016-06-23 23:09:51 +02:00
2016-05-18 02:48:37 +02:00
2016-06-13 17:43:05 +08:00
2016-05-20 22:02:55 -07:00
2016-06-23 23:15:12 +02:00
2016-06-07 12:44:23 +05:30
2016-05-31 22:17:05 +05:30
2016-06-03 17:28:21 +02:00
2016-06-15 17:17:22 +09:00
2016-05-04 14:16:49 -04:00
2016-06-03 09:57:36 +02:00
2016-06-29 10:05:44 -07:00
2016-06-24 11:10:36 +10:00
2016-06-28 13:24:14 +02:00
2016-05-09 22:45:18 +02:00
2016-05-01 09:23:14 -07:00
2016-06-23 06:24:23 -07:00
2016-05-20 17:58:30 -07:00
2016-06-16 00:13:06 -07:00
2016-06-09 22:38:16 +02:00
2016-06-18 06:05:28 -10:00
2016-06-23 12:22:33 -04:00
2016-06-27 20:34:43 -07:00
2016-06-17 11:29:48 +02:00
2016-04-30 09:26:55 -07:00
2016-06-14 11:41:57 +02:00
2016-06-16 22:06:30 -07:00
2016-06-08 11:47:06 +02:00
2016-05-06 12:51:10 -06:00
2016-05-01 18:33:04 +10:00
2016-05-08 22:44:46 +05:30
2016-06-13 18:49:30 -07:00
2016-05-27 14:28:09 -07:00
2016-06-15 15:35:37 -10:00
2016-06-16 11:43:48 +03:00
2016-05-23 17:04:14 -07:00
2016-05-18 16:38:59 -07:00
2016-05-27 15:26:11 -07:00
2016-06-10 22:14:24 -07:00
2016-06-02 10:40:20 +02:00
2016-06-23 00:29:32 +02:00
2016-07-01 05:40:53 -04:00
2016-05-10 00:01:47 +02:00
2016-05-26 19:34:26 -07:00
2016-06-09 14:28:28 -06:00
2016-05-27 15:26:11 -07:00
2016-06-30 05:03:36 -04:00
2016-04-30 13:56:46 -07:00
2016-06-20 13:24:20 -05:00
2016-05-01 18:32:32 +10:00
2016-06-15 09:51:35 +01:00
2016-06-30 05:03:36 -04:00
2016-06-23 11:05:04 +02:00
2016-06-08 13:21:37 -07:00
2016-05-20 21:26:15 -07:00
2016-06-16 15:54:11 +02:00
2016-05-16 19:17:22 -07:00
2016-05-29 22:32:27 -07:00
2016-06-14 10:51:45 +02:00
2016-05-05 17:38:53 -07:00
2016-06-13 16:51:57 +01:00
2016-05-12 15:50:19 -07:00
2016-05-06 11:08:58 -07:00
2016-05-21 17:07:17 +02:00
2016-06-16 22:16:13 -07:00
2016-05-20 18:33:37 -07:00
2016-06-18 11:59:01 -07:00
2016-06-07 15:56:31 -07:00
2016-05-28 12:23:12 -07:00
2016-04-30 14:15:56 -07:00
2016-06-17 11:21:45 -07:00
2016-05-28 12:04:17 -07:00
2016-06-12 06:30:39 -07:00
2016-05-02 12:09:22 -05:00
2016-06-05 10:36:01 -07:00
2016-05-01 14:11:12 -07:00
2016-06-17 18:00:46 -07:00
2016-05-31 21:25:52 -06:00
2016-07-01 05:32:17 -04:00
2016-05-31 08:20:43 +03:00
2016-05-22 19:44:13 +03:00
2016-05-01 14:00:00 -07:00
2016-05-01 14:37:49 -07:00
2016-06-17 20:21:12 -07:00
2016-06-24 10:53:03 +01:00
2016-05-23 11:18:01 -07:00
2016-05-20 22:02:53 -07:00