From owner-svn-src-head@FreeBSD.ORG Sat Mar 26 11:59:18 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8910106564A; Sat, 26 Mar 2011 11:59:18 +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 B91FE8FC1F; Sat, 26 Mar 2011 11:59:18 +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 p2QBxIQw021141; Sat, 26 Mar 2011 11:59:18 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p2QBxIgS021139; Sat, 26 Mar 2011 11:59:18 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201103261159.p2QBxIgS021139@svn.freebsd.org> From: Adrian Chadd Date: Sat, 26 Mar 2011 11:59:18 +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: r220034 - head/sys/dev/ath/ath_hal X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 11:59:18 -0000 Author: adrian Date: Sat Mar 26 11:59:18 2011 New Revision: 220034 URL: http://svn.freebsd.org/changeset/base/220034 Log: This was missing from the previous HAL commit - it fixes a typo and introduces the PS-POLL hardware support. Modified: head/sys/dev/ath/ath_hal/ah_internal.h Modified: head/sys/dev/ath/ath_hal/ah_internal.h ============================================================================== --- head/sys/dev/ath/ath_hal/ah_internal.h Sat Mar 26 11:58:29 2011 (r220033) +++ head/sys/dev/ath/ath_hal/ah_internal.h Sat Mar 26 11:59:18 2011 (r220034) @@ -196,7 +196,8 @@ typedef struct { halEnhancedPmSupport : 1, halMbssidAggrSupport : 1, halBssidMatchSupport : 1, - hal4kbSplitTransSupport : 1; + hal4kbSplitTransSupport : 1, + halHasPsPollSupport : 1; uint32_t halWirelessModes; uint16_t halTotalQueues; uint16_t halKeyCacheSize;