For now (ie: until autosleep support is fully fleshed out), always clear

all of the RX status fields when initialising a new RX descriptor.
This commit is contained in:
Adrian Chadd 2011-10-02 13:47:03 +00:00
parent 9bf15204ae
commit 75350906bc

View File

@ -119,8 +119,7 @@ ar5416SetupRxDesc(struct ath_hal *ah, struct ath_desc *ds,
ads->ds_rxstatus8 &= ~AR_RxDone;
/* clear the rest of the status fields */
if (! pCap->halAutoSleepSupport)
OS_MEMZERO(&(ads->u), sizeof(ads->u));
OS_MEMZERO(&(ads->u), sizeof(ads->u));
return AH_TRUE;
}