From owner-svn-src-all@FreeBSD.ORG Thu May 26 16:55:44 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 668251065673; Thu, 26 May 2011 16:55:44 +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 587628FC17; Thu, 26 May 2011 16:55:44 +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 p4QGtimY072793; Thu, 26 May 2011 16:55:44 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p4QGtiKu072791; Thu, 26 May 2011 16:55:44 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201105261655.p4QGtiKu072791@svn.freebsd.org> From: Adrian Chadd Date: Thu, 26 May 2011 16:55:44 +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: r222315 - 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, 26 May 2011 16:55:44 -0000 Author: adrian Date: Thu May 26 16:55:44 2011 New Revision: 222315 URL: http://svn.freebsd.org/changeset/base/222315 Log: Make sure only two chains are calibrated for the AR9287. Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c ============================================================================== --- head/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c Thu May 26 16:52:37 2011 (r222314) +++ head/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c Thu May 26 16:55:44 2011 (r222315) @@ -594,8 +594,8 @@ ar5416LoadNF(struct ath_hal *ah, const s if (AR_SREV_KITE(ah)) { /* Kite has only one chain */ chainmask = 0x9; - } else if (AR_SREV_MERLIN(ah)) { - /* Merlin has only two chains */ + } else if (AR_SREV_MERLIN(ah) || AR_SREV_KIWI(ah)) { + /* Merlin/Kiwi has only two chains */ chainmask = 0x1B; } else { chainmask = 0x3F;