Return-path: Received: from wolverine01.qualcomm.com ([199.106.114.254]:63087 "EHLO wolverine01.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753453Ab1LMI5Q (ORCPT ); Tue, 13 Dec 2011 03:57:16 -0500 Cc: , Vasanthakumar Thiagarajan , Kalle Valo , Vivek Natarajan , Mohammed Shafi Shajakhan From: Mohammed Shafi Shajakhan To: Johannes Berg Subject: [RFC 1/2] mac80211: remove an unnecessary paraenthesis Date: Tue, 13 Dec 2011 14:25:14 +0530 Message-ID: <1323766515-19223-1-git-send-email-mohammed@qca.qualcomm.com> (sfid-20111213_095718_735994_3D842B8D) MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: From: Mohammed Shafi Shajakhan Signed-off-by: Mohammed Shafi Shajakhan --- net/mac80211/mlme.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 09019d1..67a6be1 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -819,7 +819,7 @@ void ieee80211_dynamic_ps_enable_work(struct work_struct *work) } if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) && - (!(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED))) { + !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) { netif_tx_stop_all_queues(sdata->dev); if (drv_tx_frames_pending(local)) -- 1.7.0.4