Return-path: Received: from mail-qw0-f46.google.com ([209.85.216.46]:42023 "EHLO mail-qw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755954Ab1LCDjq (ORCPT ); Fri, 2 Dec 2011 22:39:46 -0500 Received: by qadb14 with SMTP id b14so876444qad.19 for ; Fri, 02 Dec 2011 19:39:45 -0800 (PST) From: Nikolay Martynov To: linville@tuxdriver.com Cc: linux-wireless@vger.kernel.org, Nikolay Martynov Subject: [PATCH v4 4/4] ath9k: enable ANI for ar9100 chips Date: Fri, 2 Dec 2011 22:39:17 -0500 Message-Id: <1322883557-14120-5-git-send-email-mar.kolya@gmail.com> (sfid-20111203_043955_134843_C3D9DA36) In-Reply-To: <1322883557-14120-1-git-send-email-mar.kolya@gmail.com> References: <1322883557-14120-1-git-send-email-mar.kolya@gmail.com> Sender: linux-wireless-owner@vger.kernel.org List-ID: Enable ANI for ar9100 since it seems to be working fine (and as a matter of fact ANI was always performed for ar9100 since code which was supposed to disable it didn't achieve this goal). This patch sets config.enable_ani to default (true) value for ar9100. Signed-off-by: Nikolay Martynov --- drivers/net/wireless/ath/ath9k/hw.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 9871072..7f8fc65 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c @@ -610,8 +610,8 @@ static int __ath9k_hw_init(struct ath_hw *ah) if (!AR_SREV_9300_20_OR_LATER(ah)) ah->ani_function &= ~ATH9K_ANI_MRC_CCK; - /* disable ANI for 9100 and 9340 */ - if (AR_SREV_9100(ah) || AR_SREV_9340(ah)) + /* disable ANI for 9340 */ + if (AR_SREV_9340(ah)) ah->config.enable_ani = false; ath9k_hw_init_mode_regs(ah); -- 1.7.4.1