From: Johan Hovold <johan@kernel.org>
To: Xie Qirong <xieqr16@lzu.edu.cn>
Cc: "Bryan O'Donoghue" <pure.logic@nexus-software.ie>,
Johan Hovold <johan@kernel.org>, Alex Elder <elder@kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org,
"Bryan O'Donoghue" <bryan.odonoghue@linaro.org>
Subject: Re: [PATCH] greybus: timesync: replace init_timer with setup_timer
Date: Mon, 2 Jan 2017 10:54:20 +0100 [thread overview]
Message-ID: <20170102095420.GO8189@localhost> (raw)
In-Reply-To: <20161213143957.30708-1-xieqr16@lzu.edu.cn>
On Tue, Dec 13, 2016 at 10:39:57PM +0800, Xie Qirong wrote:
> The combination of init_timer and setting up the data and function field
> manually is equivalent to calling setup_timer(). This is an api
> consolidation only and improves readability.
>
> Signed-off-by: Xie Qirong <xieqr16@lzu.edu.cn>
> ---
>
> setup_timer.cocci suggested the following improvement:
> drivers/staging/greybus/timesync.c:1058:1-11: Use setup_timer function
> for function on line 1059.
>
> Patch was compile checked with: x86_64_defconfig + CONFIG_STAGING=y,
> CONFIG_GREYBUS=m
>
> Kernel version: 4.9.0 (localversion-next is next-20161213)
>
> drivers/staging/greybus/timesync.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/staging/greybus/timesync.c b/drivers/staging/greybus/timesync.c
> index 29e6c1c..af83e12 100644
> --- a/drivers/staging/greybus/timesync.c
> +++ b/drivers/staging/greybus/timesync.c
> @@ -1055,10 +1055,9 @@ int gb_timesync_svc_add(struct gb_svc *svc)
> goto done;
> }
>
> - init_timer(×ync_svc->ktime_timer);
> - timesync_svc->ktime_timer.function = gb_timesync_ktime_timer_fn;
> + setup_timer(×ync_svc->ktime_timer, gb_timesync_ktime_timer_fn,
> + (unsigned long)timesync_svc);
Please make sure to align the continuation line to the open parenthesis
(which is the style followed in this file).
> timesync_svc->ktime_timer.expires = jiffies + GB_TIMESYNC_KTIME_UPDATE;
> - timesync_svc->ktime_timer.data = (unsigned long)timesync_svc;
> add_timer(×ync_svc->ktime_timer);
> done:
> mutex_unlock(&gb_timesync_svc_list_mutex);
When resending you can add my
Reviewed-by: Johan Hovold <johan@kernel.org>
Thanks,
Johan
prev parent reply other threads:[~2017-01-02 9:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-13 14:39 [PATCH] greybus: timesync: replace init_timer with setup_timer Xie Qirong
2017-01-02 9:54 ` Johan Hovold [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170102095420.GO8189@localhost \
--to=johan@kernel.org \
--cc=bryan.odonoghue@linaro.org \
--cc=devel@driverdev.osuosl.org \
--cc=elder@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pure.logic@nexus-software.ie \
--cc=xieqr16@lzu.edu.cn \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox