diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/common.h')
| -rw-r--r-- | drivers/net/wireless/ath/ath9k/common.h | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/common.h b/drivers/net/wireless/ath/ath9k/common.h index 72a835d9e97..e08f7e5a26e 100644 --- a/drivers/net/wireless/ath/ath9k/common.h +++ b/drivers/net/wireless/ath/ath9k/common.h @@ -20,6 +20,7 @@  #include "../debug.h"  #include "hw.h" +#include "hw-ops.h"  /* Common header for Atheros 802.11n base driver cores */ @@ -76,11 +77,12 @@ struct ath_buf {  					   an aggregate) */  	struct ath_buf *bf_next;	/* next subframe in the aggregate */  	struct sk_buff *bf_mpdu;	/* enclosing frame structure */ -	struct ath_desc *bf_desc;	/* virtual addr of desc */ +	void *bf_desc;			/* virtual addr of desc */  	dma_addr_t bf_daddr;		/* physical addr of desc */  	dma_addr_t bf_buf_addr;		/* physical addr of data buffer */  	bool bf_stale;  	bool bf_isnullfunc; +	bool bf_tx_aborted;  	u16 bf_flags;  	struct ath_buf_state bf_state;  	dma_addr_t bf_dmacontext;  |