Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f17c48e authored by Nikolay Martynov's avatar Nikolay Martynov Committed by John W. Linville
Browse files

ath9k: enable ANI for ar9100 chips



  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: default avatarNikolay Martynov <mar.kolya@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 4279425c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);