Do a dma sync before the descriptors are chained together.

I need to find a better place to do this..
This commit is contained in:
adrian 2012-04-07 05:51:43 +00:00
parent 8b30efff05
commit 1e4ae572e5

View File

@ -322,6 +322,7 @@ ath_tx_chaindesclist(struct ath_softc *sc, struct ath_buf *bf)
ds->ds_ctl0, ds->ds_ctl1, ds->ds_hw[0], ds->ds_hw[1]);
bf->bf_lastds = ds;
}
bus_dmamap_sync(sc->sc_dmat, bf->bf_dmamap, BUS_DMASYNC_PREWRITE);
}
/*
@ -372,6 +373,8 @@ ath_tx_chaindesclist_subframe(struct ath_softc *sc, struct ath_buf *bf)
__func__, i, ds->ds_link, ds->ds_data,
ds->ds_ctl0, ds->ds_ctl1, ds->ds_hw[0], ds->ds_hw[1]);
bf->bf_lastds = ds;
bus_dmamap_sync(sc->sc_dmat, bf->bf_dmamap,
BUS_DMASYNC_PREWRITE);
}
}