Re: [PATCH] atm: horizon: Use setup_timer

2016-07-01 Thread David Miller
From: Amitoj Kaur Chawla Date: Thu, 30 Jun 2016 14:14:01 +0530 > 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: ...

Re: [PATCH] atm: horizon: Use setup_timer

2016-07-01 Thread David Miller
From: Amitoj Kaur Chawla Date: Thu, 30 Jun 2016 14:14:01 +0530 > 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: ... > Signed-off-by:

[PATCH] atm: horizon: Use setup_timer

2016-06-30 Thread Amitoj Kaur Chawla
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; |

[PATCH] atm: horizon: Use setup_timer

2016-06-30 Thread Amitoj Kaur Chawla
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; |