Deleted Added
full compact
17c17
< * $FreeBSD: head/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c 217621 2011-01-20 05:49:15Z adrian $
---
> * $FreeBSD: head/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c 238607 2012-07-19 02:25:14Z adrian $
632a633,665
>
> /*
> * Set the TX descriptor link pointer
> */
> void
> ar5210SetTxDescLink(struct ath_hal *ah, void *ds, uint32_t link)
> {
> struct ar5210_desc *ads = AR5210DESC(ds);
>
> ads->ds_link = link;
> }
>
> /*
> * Get the TX descriptor link pointer
> */
> void
> ar5210GetTxDescLink(struct ath_hal *ah, void *ds, uint32_t *link)
> {
> struct ar5210_desc *ads = AR5210DESC(ds);
>
> *link = ads->ds_link;
> }
>
> /*
> * Get a pointer to the TX descriptor link pointer
> */
> void
> ar5210GetTxDescLinkPtr(struct ath_hal *ah, void *ds, uint32_t **linkptr)
> {
> struct ar5210_desc *ads = AR5210DESC(ds);
>
> *linkptr = &ads->ds_link;
> }