Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Sep 2011 03:59:56 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r225562 - user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar9002
Message-ID:  <201109150359.p8F3xuGF055480@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201109150359.p8F3xuGF055480>