All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Vaishali Thakkar <vthakkar1994@gmail.com>
Cc: outreachy-kernel@googlegroups.com
Subject: Re: [Outreachy kernel] [PATCH 2/2] Staging: rtl8188eu: Eliminate use of _init_timer
Date: Thu, 26 Feb 2015 12:57:09 -0800	[thread overview]
Message-ID: <20150226205709.GA20346@kroah.com> (raw)
In-Reply-To: <a9e63f796f9f54a286ef73830c09c33e0f2d316d.1424930708.git.vthakkar1994@gmail.com>

On Thu, Feb 26, 2015 at 11:42:34AM +0530, Vaishali Thakkar wrote:
> This patch introduces the use of API function setup_timer
> instead of driver specific function _init_timer as it is
> the preferred and standard way to setup and set the timer.
> Also, definition of function _init_timer is removed as it
> is no longer needed after this change.
> 
> Here, some of cases are handled using Coccinelle and
> semantic patch used for this is as follows:
> 
> @@ expression x, y; identifier a, b;@@
> 
> - _init_timer (&x, y, a, b);
> + setup_timer (&x, a, (unsigned long)b);
> 
> Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
> ---
> v1: Here, this patch has two line over 80 characters as
>     limiting them to 80 characters does not make code look
>     good and readable.
> 
>  drivers/staging/rtl8188eu/core/rtw_led.c          |  3 ++-
>  drivers/staging/rtl8188eu/core/rtw_pwrctrl.c      |  2 +-
>  drivers/staging/rtl8188eu/core/rtw_recv.c         |  2 +-
>  drivers/staging/rtl8188eu/include/osdep_service.h |  9 ---------
>  drivers/staging/rtl8188eu/os_dep/mlme_linux.c     | 18 ++++++++++++------
>  drivers/staging/rtl8188eu/os_dep/recv_linux.c     |  4 +++-
>  6 files changed, 19 insertions(+), 19 deletions(-)

Due to other changes in my tree, this patch no longer applies.  Can you
please redo it against my staging-testing branch of staging.git and
resend?

thanks,

greg k-h


  reply	other threads:[~2015-02-26 20:57 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-26  6:12 [PATCH 0/2] Staging: rtl8188eu: Use mod_timer and setup_timer Vaishali Thakkar
2015-02-26  6:12 ` [PATCH 1/2] Staging: rtl8188eu: Eliminate use of _set_timer Vaishali Thakkar
2015-02-26  6:20   ` [Outreachy kernel] " Julia Lawall
2015-02-26  7:29     ` Vaishali Thakkar
2015-02-26  9:09       ` Julia Lawall
2015-02-26  9:53         ` Vaishali Thakkar
2015-02-26  6:12 ` [PATCH 2/2] Staging: rtl8188eu: Eliminate use of _init_timer Vaishali Thakkar
2015-02-26 20:57   ` Greg KH [this message]
     [not found]   ` <20150226205638.GA16080@kroah.com>
2015-02-27  3:34     ` [Outreachy kernel] " Vaishali Thakkar

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=20150226205709.GA20346@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=outreachy-kernel@googlegroups.com \
    --cc=vthakkar1994@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.