Remove the mcast path calls to ath_hal_gettxdesclinkptr() for axq_link -

they're no longer needed for the legacy path and they're not wanted
for the EDMA path.

Tested:

* AR9280, hostap + CABQ
* AR9380/AR9580, hostap + CABQ
This commit is contained in:
Adrian Chadd 2013-03-26 04:56:54 +00:00
parent b708ea2941
commit 35bec3655e
2 changed files with 0 additions and 3 deletions

View File

@ -720,7 +720,6 @@ ath_tx_handoff_mcast(struct ath_softc *sc, struct ath_txq *txq,
bf->bf_daddr);
}
ATH_TXQ_INSERT_TAIL(txq, bf, bf_list);
ath_hal_gettxdesclinkptr(sc->sc_ah, bf->bf_lastds, &txq->axq_link);
ATH_TXQ_UNLOCK(txq);
}

View File

@ -279,9 +279,7 @@ ath_edma_xmit_handoff_mcast(struct ath_softc *sc, struct ath_txq *txq,
if (if_ath_alq_checkdebug(&sc->sc_alq, ATH_ALQ_EDMA_TXDESC))
ath_tx_alq_post(sc, bf);
#endif /* ATH_DEBUG_ALQ */
ATH_TXQ_INSERT_TAIL(txq, bf, bf_list);
ath_hal_gettxdesclinkptr(sc->sc_ah, bf->bf_lastds, &txq->axq_link);
ATH_TXQ_UNLOCK(txq);
}