Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Feb 2011 03:55:34 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r218183 - in head/sys/dev/ath/ath_hal: ar9001 ar9002
Message-ID:  <201102020355.p123tYrH094975@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Wed Feb  2 03:55:34 2011
New Revision: 218183
URL: http://svn.freebsd.org/changeset/base/218183

Log:
  Call the correct ANI Attach routine.

Modified:
  head/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c
  head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c
  head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c

Modified: head/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c	Wed Feb  2 03:27:31 2011	(r218182)
+++ head/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c	Wed Feb  2 03:55:34 2011	(r218183)
@@ -81,7 +81,7 @@ ar9160AniSetup(struct ath_hal *ah)
 		.period			= 100,
 	};
 	/* NB: ANI is not enabled yet */
-	ar5212AniAttach(ah, &aniparams, &aniparams, AH_FALSE);
+	ar5416AniAttach(ah, &aniparams, &aniparams, AH_FALSE);
 }
 
 /*

Modified: head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c	Wed Feb  2 03:27:31 2011	(r218182)
+++ head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c	Wed Feb  2 03:55:34 2011	(r218183)
@@ -69,7 +69,7 @@ static void
 ar9280AniSetup(struct ath_hal *ah)
 {
 	/* NB: disable ANI for reliable RIFS rx */
-	ar5212AniAttach(ah, AH_NULL, AH_NULL, AH_FALSE);
+	ar5416AniAttach(ah, AH_NULL, AH_NULL, AH_FALSE);
 }
 
 /*

Modified: head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c	Wed Feb  2 03:27:31 2011	(r218182)
+++ head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c	Wed Feb  2 03:55:34 2011	(r218183)
@@ -71,7 +71,7 @@ static void
 ar9285AniSetup(struct ath_hal *ah)
 {
 	/* NB: disable ANI for reliable RIFS rx */
-	ar5212AniAttach(ah, AH_NULL, AH_NULL, AH_FALSE);
+	ar5416AniAttach(ah, AH_NULL, AH_NULL, AH_FALSE);
 }
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201102020355.p123tYrH094975>