From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail.atheros.com ([12.36.123.2]:28333 "EHLO mail.atheros.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751941AbZG3RWp (ORCPT ); Thu, 30 Jul 2009 13:22:45 -0400 Received: from mail.atheros.com ([10.10.20.105]) by sidewinder.atheros.com for ; Thu, 30 Jul 2009 10:22:46 -0700 From: "Luis R. Rodriguez" To: , CC: , "Luis R. Rodriguez" Subject: [PATCH v2 1/3] cfg80211: use goto out on 11d reg hint failure Date: Thu, 30 Jul 2009 10:22:40 -0700 Message-ID: <1248974562-8315-2-git-send-email-lrodriguez@atheros.com> In-Reply-To: <1248974562-8315-1-git-send-email-lrodriguez@atheros.com> References: <1248974562-8315-1-git-send-email-lrodriguez@atheros.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: This does not change functionality. Signed-off-by: Luis R. Rodriguez --- net/wireless/reg.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/net/wireless/reg.c b/net/wireless/reg.c index fb40428..2d1d183 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c @@ -1774,10 +1774,8 @@ void regulatory_hint_11d(struct wiphy *wiphy, mutex_lock(&cfg80211_mutex); - if (unlikely(!last_request)) { - mutex_unlock(&cfg80211_mutex); - return; - } + if (unlikely(!last_request)) + goto out; /* IE len must be evenly divisible by 2 */ if (country_ie_len & 0x01) -- 1.6.0.4