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 72a835d9e97f..e08f7e5a26e0 100644 --- a/drivers/net/wireless/ath/ath9k/common.h +++ b/drivers/net/wireless/ath/ath9k/common.h | |||
@@ -20,6 +20,7 @@ | |||
20 | #include "../debug.h" | 20 | #include "../debug.h" |
21 | 21 | ||
22 | #include "hw.h" | 22 | #include "hw.h" |
23 | #include "hw-ops.h" | ||
23 | 24 | ||
24 | /* Common header for Atheros 802.11n base driver cores */ | 25 | /* Common header for Atheros 802.11n base driver cores */ |
25 | 26 | ||
@@ -76,11 +77,12 @@ struct ath_buf { | |||
76 | an aggregate) */ | 77 | an aggregate) */ |
77 | struct ath_buf *bf_next; /* next subframe in the aggregate */ | 78 | struct ath_buf *bf_next; /* next subframe in the aggregate */ |
78 | struct sk_buff *bf_mpdu; /* enclosing frame structure */ | 79 | struct sk_buff *bf_mpdu; /* enclosing frame structure */ |
79 | struct ath_desc *bf_desc; /* virtual addr of desc */ | 80 | void *bf_desc; /* virtual addr of desc */ |
80 | dma_addr_t bf_daddr; /* physical addr of desc */ | 81 | dma_addr_t bf_daddr; /* physical addr of desc */ |
81 | dma_addr_t bf_buf_addr; /* physical addr of data buffer */ | 82 | dma_addr_t bf_buf_addr; /* physical addr of data buffer */ |
82 | bool bf_stale; | 83 | bool bf_stale; |
83 | bool bf_isnullfunc; | 84 | bool bf_isnullfunc; |
85 | bool bf_tx_aborted; | ||
84 | u16 bf_flags; | 86 | u16 bf_flags; |
85 | struct ath_buf_state bf_state; | 87 | struct ath_buf_state bf_state; |
86 | dma_addr_t bf_dmacontext; | 88 | dma_addr_t bf_dmacontext; |