svn commit: r219790 - head/sys/dev/ath/ath_hal

Adrian Chadd adrian at FreeBSD.org
Sun Mar 20 08:27:06 UTC 2011


Author: adrian
Date: Sun Mar 20 08:27:06 2011
New Revision: 219790
URL: http://svn.freebsd.org/changeset/base/219790

Log:
  Add a PSPOLL queue type, in preparation for (eventually) porting
  over the TX queue setup code from ath9k for the AR5416 and later
  chips.

Modified:
  head/sys/dev/ath/ath_hal/ah.h

Modified: head/sys/dev/ath/ath_hal/ah.h
==============================================================================
--- head/sys/dev/ath/ath_hal/ah.h	Sun Mar 20 00:43:42 2011	(r219789)
+++ head/sys/dev/ath/ath_hal/ah.h	Sun Mar 20 08:27:06 2011	(r219790)
@@ -141,6 +141,7 @@ typedef enum {
 	HAL_TX_QUEUE_BEACON	= 2,		/* beacon xmit q */
 	HAL_TX_QUEUE_CAB	= 3,		/* "crap after beacon" xmit q */
 	HAL_TX_QUEUE_UAPSD	= 4,		/* u-apsd power save xmit q */
+	HAL_TX_QUEUE_PSPOLL	= 5,		/* power save poll xmit q */
 } HAL_TX_QUEUE;
 
 #define	HAL_NUM_TX_QUEUES	10		/* max possible # of queues */


More information about the svn-src-all mailing list