]> git.karo-electronics.de Git - linux-beck.git/commit
atm: horizon: Use setup_timer
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Thu, 30 Jun 2016 08:44:01 +0000 (14:14 +0530)
committerDavid S. Miller <davem@davemloft.net>
Fri, 1 Jul 2016 09:58:26 +0000 (05:58 -0400)
commit466fc793da3aea0caf365e7fadc67473e4cdaa80
tree913c3dd6485cb0ae5da04f0c1f823070ed02938c
parente3cc6e37a7ce8f6b3d992893d169ff2c51835f5b
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>
drivers/atm/horizon.c