[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20171018135342.GA16676@kroah.com>
Date: Wed, 18 Oct 2017 15:53:42 +0200
From: Greg KH <gregkh@...uxfoundation.org>
To: Srishti Sharma <srishtishar@...il.com>
Cc: devel@...verdev.osuosl.org, outreachy-kernel@...glegroups.com,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] Staging: rtlwifi: phydm: Use setup_timer
On Sat, Oct 07, 2017 at 10:56:25PM +0530, Srishti Sharma wrote:
> Use setup_timer to combine initialization of a timer with the
> initialization of the timer's function and data fields. Done
> using the following semantic patch by coccinelle.
>
> @r@
> struct timer_list *l;
> expression f, d;
> @@
>
> -init_timer(l);
> +setup_timer(l,f,d);
> ...
>
> (
> - l->function = f;
> ...
> - l->data = d;
> |
> - l->data = d;
> ...
> - l->function = f;
> )
>
> Signed-off-by: Srishti Sharma <srishtishar@...il.com>
> Acked-by: Julia Lawall <julia.lawall@...6.fr>
> ---
> drivers/staging/rtlwifi/phydm/phydm_interface.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
Due to other changes in this same function, this patch no longer
applies, sorry.
greg k-h
Powered by blists - more mailing lists