svn commit: r220784 - head/sys/dev/ath
Adrian Chadd
adrian at FreeBSD.org
Mon Apr 18 14:14:55 UTC 2011
Author: adrian
Date: Mon Apr 18 14:14:54 2011
New Revision: 220784
URL: http://svn.freebsd.org/changeset/base/220784
Log:
For now, only enable GTT. CST is firing very frequently during local tests;
I'll figure out what's going on before re-enabling this as it does add
to the interrupt load.
Modified:
head/sys/dev/ath/if_ath.c
Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c Mon Apr 18 14:07:01 2011 (r220783)
+++ head/sys/dev/ath/if_ath.c Mon Apr 18 14:14:54 2011 (r220784)
@@ -1565,7 +1565,7 @@ ath_init(void *arg)
/* Enable global TX timeout and carrier sense timeout if available */
if (ath_hal_gtxto_supported(ah))
- sc->sc_imask |= (HAL_INT_GTT | HAL_INT_CST);
+ sc->sc_imask |= HAL_INT_GTT;
DPRINTF(sc, ATH_DEBUG_RESET, "%s: imask=0x%x\n",
__func__, sc->sc_imask);
More information about the svn-src-head
mailing list