Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753391Ab1FSKMd (ORCPT ); Sun, 19 Jun 2011 06:12:33 -0400 Received: from mail-iw0-f174.google.com ([209.85.214.174]:47507 "EHLO mail-iw0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753339Ab1FSKMa (ORCPT ); Sun, 19 Jun 2011 06:12:30 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=Wmcj/5RrjY7Hr9zledABCdE0IMooIlx3aJR4upHitW/lJRIxt5PtbgFWbkVxeSLqZP uH1AqS5/lXK0StBsep7XEPyPgGlD930M+wIZhdLAxJMcWs19fMzqRQuvCI9ccCOH2Rrq TawGp67GwCAZDmkqQM5WU2OPgrocl/I98wOWY= From: Wanlong Gao To: Greg Kroah-Hartman Cc: Lucas De Marchi , Stefan Weil , Xiaochen Wang , Ilia Mirkin , Dan Carpenter , David Chosrova , =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= , Ben Hutchings , devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Wanlong Gao Subject: [PATCH 2/3] drivers:rtl8192u:remove the use of obsolete create_workqueue in r8192U_core.c Date: Sun, 19 Jun 2011 18:11:57 +0800 Message-Id: <1308478318-8462-2-git-send-email-wanlong.gao@gmail.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1308478318-8462-1-git-send-email-wanlong.gao@gmail.com> References: <1308478318-8462-1-git-send-email-wanlong.gao@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1052 Lines: 32 Remove the use of obsolete create_workqueue(name, 0) interface in r8192U_core.c, since it has changed. Signed-off-by: Wanlong Gao --- drivers/staging/rtl8192u/r8192U_core.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c index e81b8ab..334e078d 100644 --- a/drivers/staging/rtl8192u/r8192U_core.c +++ b/drivers/staging/rtl8192u/r8192U_core.c @@ -2852,11 +2852,7 @@ static void rtl8192_init_priv_task(struct net_device* dev) { struct r8192_priv *priv = ieee80211_priv(dev); -#ifdef PF_SYNCTHREAD - priv->priv_wq = create_workqueue(DRV_NAME,0); -#else priv->priv_wq = create_workqueue(DRV_NAME); -#endif INIT_WORK(&priv->reset_wq, rtl8192_restart); -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/