[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1308478318-8462-1-git-send-email-wanlong.gao@gmail.com>
Date: Sun, 19 Jun 2011 18:11:56 +0800
From: Wanlong Gao <wanlong.gao@...il.com>
To: Greg Kroah-Hartman <gregkh@...e.de>
Cc: Lucas De Marchi <lucas.demarchi@...fusion.mobi>,
Stefan Weil <weil@...l.berlios.de>,
Xiaochen Wang <wangxiaochen0@...il.com>,
Ilia Mirkin <imirkin@...m.mit.edu>,
Dan Carpenter <error27@...il.com>,
David Chosrova <dada2372@...il.com>,
Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>,
Ben Hutchings <ben@...adent.org.uk>,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Wanlong Gao <wanlong.gao@...il.com>
Subject: [PATCH 1/3] drivers:rtl8187se:remove the use of obsolete create_workqueue in ieee80211_softmac.c
Remove the use of obsolete create_workqueue(name, 0) in
ieee80211_softmac.c, since the create_workqueue interface has changed.
Signed-off-by: Wanlong Gao <wanlong.gao@...il.com>
---
.../rtl8187se/ieee80211/ieee80211_softmac.c | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
index 736a140..8925989 100644
--- a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
+++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
@@ -2568,11 +2568,8 @@ void ieee80211_softmac_init(struct ieee80211_device *ieee)
ieee->beacon_timer.data = (unsigned long) ieee;
ieee->beacon_timer.function = ieee80211_send_beacon_cb;
-#ifdef PF_SYNCTHREAD
- ieee->wq = create_workqueue(DRV_NAME,0);
-#else
ieee->wq = create_workqueue(DRV_NAME);
-#endif
+
INIT_DELAYED_WORK(&ieee->start_ibss_wq,(void*) ieee80211_start_ibss_wq);
INIT_WORK(&ieee->associate_complete_wq,(void*) ieee80211_associate_complete_wq);
INIT_WORK(&ieee->associate_procedure_wq,(void*) ieee80211_associate_procedure_wq);
--
1.7.4.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists