Deleted Added
full compact
31c31
< __FBSDID("$FreeBSD: head/sys/dev/ath/if_ath_tx.c 238350 2012-07-10 18:57:05Z jhb $");
---
> __FBSDID("$FreeBSD: head/sys/dev/ath/if_ath_tx.c 238609 2012-07-19 03:51:16Z adrian $");
313c313
< ds->ds_link = 0;
---
> ath_hal_settxdesclink(ah, ds, 0);
315c315,316
< ds->ds_link = bf->bf_daddr + sizeof(*ds) * (i + 1);
---
> ath_hal_settxdesclink(ah, ds,
> bf->bf_daddr + sizeof(*ds) * (i + 1));
353c354
< ds->ds_link = 0;
---
> ath_hal_settxdesclink(ah, ds, 0);
355c356,357
< ds->ds_link = bf->bf_daddr + sizeof(*ds) * (i + 1);
---
> ath_hal_settxdesclink(ah, ds,
> bf->bf_daddr + sizeof(*ds) * (i + 1));
417c419,420
< bf_prev->bf_lastds->ds_link = bf->bf_daddr;
---
> ath_hal_settxdesclink(sc->sc_ah, bf_prev->bf_lastds,
> bf->bf_daddr);
485c488
< txq->axq_link = &bf->bf_lastds->ds_link;
---
> ath_hal_gettxdesclinkptr(sc->sc_ah, bf->bf_lastds, &txq->axq_link);
619c622
< txq->axq_link = &bf->bf_lastds->ds_link;
---
> ath_hal_gettxdesclinkptr(ah, bf->bf_lastds, &txq->axq_link);
648c651
< txq->axq_link = &bf_last->bf_lastds->ds_link;
---
> ath_hal_gettxdesclinkptr(ah, bf->bf_lastds, &txq->axq_link);