[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20170926.113340.239908321617902101.davem@davemloft.net>
Date: Tue, 26 Sep 2017 11:33:40 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: himanshujha199640@...il.com
Cc: f.fainelli@...il.com, bcm-kernel-feedback-list@...adcom.com,
arnd@...db.de, yamada.masahiro@...ionext.com,
netdev@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] net: bcm63xx_enet: Use setup_timer and mod_timer
From: Himanshu Jha <himanshujha199640@...il.com>
Date: Sun, 24 Sep 2017 17:41:24 +0530
> Use setup_timer and mod_timer API instead of structure assignments.
>
> This is done using Coccinelle and semantic patch used
> for this as follows:
>
> @@
> expression x,y,z,a,b;
> @@
>
> -init_timer (&x);
> +setup_timer (&x, y, z);
> +mod_timer (&a, b);
> -x.function = y;
> -x.data = z;
> -x.expires = b;
> -add_timer(&a);
>
> Signed-off-by: Himanshu Jha <himanshujha199640@...il.com>
Applied to net-next, thanks.
Powered by blists - more mailing lists