From owner-svn-src-all@FreeBSD.ORG Wed Feb 2 03:55:34 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81252106566C; Wed, 2 Feb 2011 03:55:34 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6F5C18FC16; Wed, 2 Feb 2011 03:55:34 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p123tYKO094979; Wed, 2 Feb 2011 03:55:34 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p123tYrH094975; Wed, 2 Feb 2011 03:55:34 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201102020355.p123tYrH094975@svn.freebsd.org> From: Adrian Chadd Date: Wed, 2 Feb 2011 03:55:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r218183 - in head/sys/dev/ath/ath_hal: ar9001 ar9002 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Feb 2011 03:55:34 -0000 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); } /*