From patchwork Wed Oct 20 13:59:37 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis Rodriguez X-Patchwork-Id: 268511 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o9KE0Uxg015044 for ; Wed, 20 Oct 2010 14:00:30 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752858Ab0JTOAK (ORCPT ); Wed, 20 Oct 2010 10:00:10 -0400 Received: from mail.atheros.com ([12.19.149.2]:26112 "EHLO mail.atheros.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751846Ab0JTOAH (ORCPT ); Wed, 20 Oct 2010 10:00:07 -0400 Received: from mail.atheros.com ([10.10.20.107]) by sidewinder.atheros.com for ; Wed, 20 Oct 2010 06:59:57 -0700 Received: from tux (10.10.10.239) by SC1EXHC-02.global.atheros.com (10.10.20.111) with Microsoft SMTP Server (TLS) id 8.2.213.0; Wed, 20 Oct 2010 07:00:05 -0700 Received: by tux (sSMTP sendmail emulation); Wed, 20 Oct 2010 06:59:57 -0700 From: "Luis R. Rodriguez" To: CC: , "Luis R. Rodriguez" Subject: [PATCH 2/3] ath: make ath_hw_set_keycache_entry() static Date: Wed, 20 Oct 2010 06:59:37 -0700 Message-ID: <1287583178-2963-3-git-send-email-lrodriguez@atheros.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1287583178-2963-1-git-send-email-lrodriguez@atheros.com> References: <1287583178-2963-1-git-send-email-lrodriguez@atheros.com> MIME-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Wed, 20 Oct 2010 14:00:30 +0000 (UTC) diff --git a/drivers/net/wireless/ath/key.c b/drivers/net/wireless/ath/key.c index 1e9aa32..62e3dac 100644 --- a/drivers/net/wireless/ath/key.c +++ b/drivers/net/wireless/ath/key.c @@ -108,9 +108,9 @@ static bool ath_hw_keysetmac(struct ath_common *common, return true; } -bool ath_hw_set_keycache_entry(struct ath_common *common, u16 entry, - const struct ath_keyval *k, - const u8 *mac) +static bool ath_hw_set_keycache_entry(struct ath_common *common, u16 entry, + const struct ath_keyval *k, + const u8 *mac) { void *ah = common->ah; u32 key0, key1, key2, key3, key4;