From: Jean Delvare <khali@linux-fr.org>
To: Greg Kroah-Hartman <gregkh@suse.de>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Staging: rtl8187se: Use to_delayed_work
Date: Tue, 21 Apr 2009 11:07:52 +0200 [thread overview]
Message-ID: <20090421110752.160ddfb0@hyperion.delvare> (raw)
In-Reply-To: <20090403174649.42626ae6@hyperion.delvare>
On Fri, 3 Apr 2009 17:46:49 +0200, Jean Delvare wrote:
> Use the recently added to_delayed_work() helper function.
>
> Signed-off-by: Jean Delvare <khali@linux-fr.org>
> ---
> drivers/staging/rtl8187se/r8180_dm.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
Greg, can you please add this patch to your staging tree? Thanks.
>
> --- linux-2.6.30-rc0.orig/drivers/staging/rtl8187se/r8180_dm.c 2009-04-03 17:19:23.000000000 +0200
> +++ linux-2.6.30-rc0/drivers/staging/rtl8187se/r8180_dm.c 2009-04-03 17:40:32.000000000 +0200
> @@ -132,7 +132,7 @@ void rtl8180_tx_pw_wq (struct work_struc
> // struct r8180_priv *priv = container_of(work, struct r8180_priv, watch_dog_wq);
> // struct ieee80211_device * ieee = (struct ieee80211_device*)
> // container_of(work, struct ieee80211_device, watch_dog_wq);
> - struct delayed_work *dwork = container_of(work,struct delayed_work,work);
> + struct delayed_work *dwork = to_delayed_work(work);
> struct ieee80211_device *ieee = container_of(dwork,struct ieee80211_device,tx_pw_wq);
> struct net_device *dev = ieee->dev;
> #else
> @@ -314,7 +314,7 @@ void rtl8180_hw_dig_wq (struct work_stru
> // struct r8180_priv *priv = container_of(work, struct r8180_priv, watch_dog_wq);
> // struct ieee80211_device * ieee = (struct ieee80211_device*)
> // container_of(work, struct ieee80211_device, watch_dog_wq);
> - struct delayed_work *dwork = container_of(work,struct delayed_work,work);
> + struct delayed_work *dwork = to_delayed_work(work);
> struct ieee80211_device *ieee = container_of(dwork,struct ieee80211_device,hw_dig_wq);
> struct net_device *dev = ieee->dev;
> #else
> @@ -1250,7 +1250,7 @@ SetInitialGain:
> #if LINUX_VERSION_CODE >=KERNEL_VERSION(2,6,20)
> void rtl8180_rate_adapter(struct work_struct * work)
> {
> - struct delayed_work *dwork = container_of(work,struct delayed_work,work);
> + struct delayed_work *dwork = to_delayed_work(work);
> struct ieee80211_device *ieee = container_of(dwork,struct ieee80211_device,rate_adapter_wq);
> struct net_device *dev = ieee->dev;
> #else
>
>
--
Jean Delvare
next prev parent reply other threads:[~2009-04-21 9:08 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-03 15:46 [PATCH] Staging: rtl8187se: Use to_delayed_work Jean Delvare
2009-04-21 9:07 ` Jean Delvare [this message]
2009-04-21 14:44 ` Greg KH
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=20090421110752.160ddfb0@hyperion.delvare \
--to=khali@linux-fr.org \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).