svn commit: r247028 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Wed Feb 20 11:20:52 UTC 2013


Author: adrian
Date: Wed Feb 20 11:20:51 2013
New Revision: 247028
URL: http://svnweb.freebsd.org/changeset/base/247028

Log:
  Enable TX FIFO underrun interrupts.  This allows the TX FIFO threshold
  adjustment code to now run.
  
  Tested:
  
  * AR5416, STA
  
  TODO:
  
  * Much more thorough testing on the other chips, AR5210 -> AR9287

Modified:
  head/sys/dev/ath/if_ath.c

Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c	Wed Feb 20 11:17:29 2013	(r247027)
+++ head/sys/dev/ath/if_ath.c	Wed Feb 20 11:20:51 2013	(r247028)
@@ -1983,6 +1983,7 @@ ath_init(void *arg)
 	 */
 	sc->sc_imask = HAL_INT_RX | HAL_INT_TX
 		  | HAL_INT_RXEOL | HAL_INT_RXORN
+		  | HAL_INT_TXURN
 		  | HAL_INT_FATAL | HAL_INT_GLOBAL;
 
 	/*


More information about the svn-src-head mailing list