From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH 11/27] ksz884x: Use setup_timer Date: Tue, 30 Dec 2014 18:35:07 -0500 (EST) Message-ID: <20141230.183507.593908938322652994.davem@davemloft.net> References: <1419604558-29743-1-git-send-email-Julia.Lawall@lip6.fr> <1419604558-29743-12-git-send-email-Julia.Lawall@lip6.fr> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org To: Julia.Lawall@lip6.fr Return-path: In-Reply-To: <1419604558-29743-12-git-send-email-Julia.Lawall@lip6.fr> Sender: kernel-janitors-owner@vger.kernel.org List-Id: netdev.vger.kernel.org From: Julia Lawall Date: Fri, 26 Dec 2014 15:35:42 +0100 > Convert a call to init_timer and accompanying intializations of > the timer's data and function fields to a call to setup_timer. > > A simplified version of the semantic match that fixes this problem is as > follows: (http://coccinelle.lip6.fr/) > > // > @@ > expression t,f,d; > @@ > > -init_timer(&t); > +setup_timer(&t,f,d); > -t.function = f; > -t.data = d; > // > > Signed-off-by: Julia Lawall Applied.