From owner-svn-src-all@FreeBSD.ORG Thu May 5 04:43:05 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 778621065673; Thu, 5 May 2011 04:43:05 +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 662088FC0C; Thu, 5 May 2011 04:43:05 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p454h5Pv082085; Thu, 5 May 2011 04:43:05 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p454h5Lg082083; Thu, 5 May 2011 04:43:05 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201105050443.p454h5Lg082083@svn.freebsd.org> From: Adrian Chadd Date: Thu, 5 May 2011 04:43:05 +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: r221483 - head/sys/dev/ath/ath_hal/ar5416 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: Thu, 05 May 2011 04:43:05 -0000 Author: adrian Date: Thu May 5 04:43:05 2011 New Revision: 221483 URL: http://svn.freebsd.org/changeset/base/221483 Log: Another Howl (AR9130) fix. I haven't seen a 5ghz AR9130 based board yet though! Obtained from: Atheros Modified: head/sys/dev/ath/ath_hal/ar5416/ar2133.c Modified: head/sys/dev/ath/ath_hal/ar5416/ar2133.c ============================================================================== --- head/sys/dev/ath/ath_hal/ar5416/ar2133.c Thu May 5 03:58:23 2011 (r221482) +++ head/sys/dev/ath/ath_hal/ar5416/ar2133.c Thu May 5 04:43:05 2011 (r221483) @@ -165,7 +165,7 @@ ar2133SetChannel(struct ath_hal *ah, con } } else if ((freq % 20) == 0 && freq >= 5120) { channelSel = ath_hal_reverseBits(((freq - 4800) / 20 << 2), 8); - if (AR_SREV_SOWL_10_OR_LATER(ah)) + if (AR_SREV_HOWL(ah) || AR_SREV_SOWL_10_OR_LATER(ah)) aModeRefSel = ath_hal_reverseBits(3, 2); else aModeRefSel = ath_hal_reverseBits(1, 2);