]> git.baikalelectronics.ru Git - kernel.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)
commita5708c045b3eca8fdb15ca6e378aca10014e56f1
tree913c3dd6485cb0ae5da04f0c1f823070ed02938c
parentbd86e22d505f1439a31054ec0a8489aa286c541c
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