From owner-svn-src-user@FreeBSD.ORG Thu Sep 15 03:59:57 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A8E8106564A; Thu, 15 Sep 2011 03:59:57 +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 1A5698FC08; Thu, 15 Sep 2011 03:59:57 +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 p8F3xu2b055483; Thu, 15 Sep 2011 03:59:56 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p8F3xuGF055480; Thu, 15 Sep 2011 03:59:56 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201109150359.p8F3xuGF055480@svn.freebsd.org> From: Adrian Chadd Date: Thu, 15 Sep 2011 03:59:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225562 - user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002 X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2011 03:59:57 -0000 Author: adrian Date: Thu Sep 15 03:59:56 2011 New Revision: 225562 URL: http://svn.freebsd.org/changeset/base/225562 Log: Flip on autosleep support for Kite/Kiwi. It's only used in the status clearing of RX descriptors. I haven't yet figured out why that is. Modified: user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c Modified: user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c Wed Sep 14 21:08:02 2011 (r225561) +++ user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c Thu Sep 15 03:59:56 2011 (r225562) @@ -421,7 +421,7 @@ ar9285FillCapabilityInfo(struct ath_hal /* XXX bluetooth */ pCap->halBtCoexSupport = AH_TRUE; #endif - pCap->halAutoSleepSupport = AH_FALSE; /* XXX? */ + pCap->halAutoSleepSupport = AH_TRUE; /* XXX? */ pCap->hal4kbSplitTransSupport = AH_FALSE; /* Disable this so Block-ACK works correctly */ pCap->halHasRxSelfLinkedTail = AH_FALSE; Modified: user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c Wed Sep 14 21:08:02 2011 (r225561) +++ user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c Thu Sep 15 03:59:56 2011 (r225562) @@ -438,7 +438,7 @@ ar9287FillCapabilityInfo(struct ath_hal /* XXX bluetooth */ pCap->halBtCoexSupport = AH_TRUE; #endif - pCap->halAutoSleepSupport = AH_FALSE; /* XXX? */ + pCap->halAutoSleepSupport = AH_TRUE; /* XXX? */ pCap->hal4kbSplitTransSupport = AH_FALSE; /* Disable this so Block-ACK works correctly */ pCap->halHasRxSelfLinkedTail = AH_FALSE;