svn commit: r265030 - head/sys/dev/ath/ath_hal/ar5416

Adrian Chadd adrian at FreeBSD.org
Sun Apr 27 23:33:38 UTC 2014


Author: adrian
Date: Sun Apr 27 23:33:37 2014
New Revision: 265030
URL: http://svnweb.freebsd.org/changeset/base/265030

Log:
  Fix the AR_SLEEP1 and AR_SLEEP2 definitions. Oops!
  
  Tested:
  
  * AR9285, STA
  * AR5416, STA
  
  Obtained from:	QCA, Linux ath9k

Modified:
  head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h	Sun Apr 27 23:31:42 2014	(r265029)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h	Sun Apr 27 23:33:37 2014	(r265030)
@@ -476,10 +476,10 @@
 /* Sleep control */
 #define	AR5416_SLEEP1_ASSUME_DTIM	0x00080000
 #define	AR5416_SLEEP1_CAB_TIMEOUT	0xFFE00000	/* Cab timeout (TU) */
-#define	AR5416_SLEEP1_CAB_TIMEOUT_S	22
+#define	AR5416_SLEEP1_CAB_TIMEOUT_S	21
 
 #define	AR5416_SLEEP2_BEACON_TIMEOUT	0xFFE00000	/* Beacon timeout (TU)*/
-#define	AR5416_SLEEP2_BEACON_TIMEOUT_S	22
+#define	AR5416_SLEEP2_BEACON_TIMEOUT_S	21
 
 /* Sleep Registers */
 #define	AR_SLP32_HALFCLK_LATENCY      0x000FFFFF	/* rising <-> falling edge */


More information about the svn-src-all mailing list