From owner-svn-src-all@FreeBSD.ORG Tue Oct 25 23:14:40 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 85945106567A; Tue, 25 Oct 2011 23:14:40 +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 74E0D8FC15; Tue, 25 Oct 2011 23:14:40 +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 p9PNEeVG021034; Tue, 25 Oct 2011 23:14:40 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p9PNEejQ021032; Tue, 25 Oct 2011 23:14:40 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201110252314.p9PNEejQ021032@svn.freebsd.org> From: Adrian Chadd Date: Tue, 25 Oct 2011 23:14:40 +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: r226761 - 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: Tue, 25 Oct 2011 23:14:40 -0000 Author: adrian Date: Tue Oct 25 23:14:40 2011 New Revision: 226761 URL: http://svn.freebsd.org/changeset/base/226761 Log: Fix an incorrect flag. Obtained from: Atheros Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c ============================================================================== --- head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c Tue Oct 25 23:13:36 2011 (r226760) +++ head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c Tue Oct 25 23:14:40 2011 (r226761) @@ -284,7 +284,7 @@ ar5416Get11nRxClear(struct ath_hal *ah) rxclear |= HAL_RX_CLEAR_CTL_LOW; } /* extension channel */ - if (val & AR_DIAG_RXCLEAR_CTL_LOW) { + if (val & AR_DIAG_RXCLEAR_EXT_LOW) { rxclear |= HAL_RX_CLEAR_EXT_LOW; } return rxclear;