From owner-svn-src-all@FreeBSD.ORG Tue Feb 8 14:15:46 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 B2F501065673; Tue, 8 Feb 2011 14:15:46 +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 A3EAB8FC16; Tue, 8 Feb 2011 14:15:46 +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 p18EFkh9049476; Tue, 8 Feb 2011 14:15:46 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p18EFkZN049474; Tue, 8 Feb 2011 14:15:46 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201102081415.p18EFkZN049474@svn.freebsd.org> From: Adrian Chadd Date: Tue, 8 Feb 2011 14:15:46 +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: r218441 - 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, 08 Feb 2011 14:15:46 -0000 Author: adrian Date: Tue Feb 8 14:15:46 2011 New Revision: 218441 URL: http://svn.freebsd.org/changeset/base/218441 Log: I missed this commit - enable 4k transaction support for the ar5416+ar9160. Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c ============================================================================== --- head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c Tue Feb 8 13:24:59 2011 (r218440) +++ head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c Tue Feb 8 14:15:46 2011 (r218441) @@ -811,6 +811,7 @@ ar5416FillCapabilityInfo(struct ath_hal pCap->halWowMatchPatternExact = AH_FALSE; pCap->halBtCoexSupport = AH_FALSE; /* XXX need support */ pCap->halAutoSleepSupport = AH_FALSE; + pCap->hal4kbSplitTransSupport = AH_TRUE; #if 0 /* XXX not yet */ pCap->halNumAntCfg2GHz = ar5416GetNumAntConfig(ahp, HAL_FREQ_BAND_2GHZ); pCap->halNumAntCfg5GHz = ar5416GetNumAntConfig(ahp, HAL_FREQ_BAND_5GHZ);