From: Christian Gromm <christian.gromm@microchip.com>
To: Muhammad Falak R Wani <falakreyaz@gmail.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Andrey Shvetsov <andrey.shvetsov@k2l.de>,
Sudip Mukherjee <sudipm.mukherjee@gmail.com>,
Masanari Iida <standby24x7@gmail.com>,
Adrian Remonda <adrianremonda@gmail.com>,
<devel@driverdev.osuosl.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] staging: most: hdm-usb: Use setup_timer
Date: Wed, 28 Oct 2015 11:21:09 +0100 [thread overview]
Message-ID: <20151028112109.161ff79a@muaddib> (raw)
In-Reply-To: <1445652944-2811-1-git-send-email-falakreyaz@gmail.com>
On Sat, 24 Oct 2015 07:45:44 +0530
Muhammad Falak R Wani <falakreyaz@gmail.com> wrote:
> Use the timer API function setup_timer instead of init_timer, removing
> the structure field assignments.
>
> <smpl>
>
> @timer@
> expression e1,e2,e3,fn_ptr;
> @@
> -init_timer(&e1);
> +setup_timer(&e1, fn_ptr, e2);
> ... when != fn_ptr = e3
> -e1.function = fn_ptr;
> -e1.data = e2;
>
> </smpl>
>
> Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
Acked-by: Christian Gromm <christian.gromm@microchip.com>
> ---
> drivers/staging/most/hdm-usb/hdm_usb.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/staging/most/hdm-usb/hdm_usb.c b/drivers/staging/most/hdm-usb/hdm_usb.c
> index 0bf38c4..2e07313 100644
> --- a/drivers/staging/most/hdm-usb/hdm_usb.c
> +++ b/drivers/staging/most/hdm-usb/hdm_usb.c
> @@ -1235,11 +1235,10 @@ hdm_probe(struct usb_interface *interface, const struct usb_device_id *id)
> num_endpoints = usb_iface_desc->desc.bNumEndpoints;
> mutex_init(&mdev->io_mutex);
> INIT_WORK(&mdev->poll_work_obj, wq_netinfo);
> - init_timer(&mdev->link_stat_timer);
> + setup_timer(&mdev->link_stat_timer, link_stat_timer_handler,
> + (unsigned long)mdev);
>
> mdev->usb_device = usb_dev;
> - mdev->link_stat_timer.function = link_stat_timer_handler;
> - mdev->link_stat_timer.data = (unsigned long)mdev;
> mdev->link_stat_timer.expires = jiffies + (2 * HZ);
>
> mdev->iface.mod = hdm_usb_fops.owner;
prev parent reply other threads:[~2015-10-28 10:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-24 2:15 [PATCH] staging: most: hdm-usb: Use setup_timer Muhammad Falak R Wani
2015-10-28 10:21 ` Christian Gromm [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=20151028112109.161ff79a@muaddib \
--to=christian.gromm@microchip.com \
--cc=adrianremonda@gmail.com \
--cc=andrey.shvetsov@k2l.de \
--cc=devel@driverdev.osuosl.org \
--cc=falakreyaz@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=standby24x7@gmail.com \
--cc=sudipm.mukherjee@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.