If any of the TX queues have underrun reporting enabled, enable

HAL_INT_TXURN in the interrupt mask register.

This should now allow for TXURN interrupts to be posted.
This commit is contained in:
Adrian Chadd 2013-02-20 11:24:11 +00:00
parent f274e91f67
commit 71d6fe723e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=247030

View File

@ -307,6 +307,8 @@ ar5416SetInterrupts(struct ath_hal *ah, HAL_INT ints)
mask |= AR_IMR_TXDESC;
if (ahp->ah_txEolInterruptMask)
mask |= AR_IMR_TXEOL;
if (ahp->ah_txUrnInterruptMask)
mask |= AR_IMR_TXURN;
}
if (ints & (HAL_INT_BMISC)) {
mask |= AR_IMR_BCNMISC;