ath9k.h (a75c0629716ea19ff934ef4ff1c31a4610bcb408) ath9k.h (56dc63369270b60e59637d153caf2e6b424ca30e)
1/*
2 * Copyright (c) 2008-2011 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES

--- 192 unchanged lines hidden (view full) ---

201 struct ath_txq *txq;
202 int sched;
203 struct list_head list;
204 struct list_head tid_q;
205 bool clear_ps_filter;
206};
207
208struct ath_frame_info {
1/*
2 * Copyright (c) 2008-2011 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES

--- 192 unchanged lines hidden (view full) ---

201 struct ath_txq *txq;
202 int sched;
203 struct list_head list;
204 struct list_head tid_q;
205 bool clear_ps_filter;
206};
207
208struct ath_frame_info {
209 struct ath_buf *bf;
209 int framelen;
210 enum ath9k_key_type keytype;
211 u8 keyix;
212 u8 retries;
213 u16 seqno;
214};
215
216struct ath_buf_state {

--- 13 unchanged lines hidden (view full) ---

230 dma_addr_t bf_buf_addr; /* physical addr of data buffer, for DMA */
231 bool bf_stale;
232 u16 bf_flags;
233 struct ath_buf_state bf_state;
234};
235
236struct ath_atx_tid {
237 struct list_head list;
210 int framelen;
211 enum ath9k_key_type keytype;
212 u8 keyix;
213 u8 retries;
214 u16 seqno;
215};
216
217struct ath_buf_state {

--- 13 unchanged lines hidden (view full) ---

231 dma_addr_t bf_buf_addr; /* physical addr of data buffer, for DMA */
232 bool bf_stale;
233 u16 bf_flags;
234 struct ath_buf_state bf_state;
235};
236
237struct ath_atx_tid {
238 struct list_head list;
238 struct list_head buf_q;
239 struct sk_buff_head buf_q;
239 struct ath_node *an;
240 struct ath_atx_ac *ac;
241 unsigned long tx_buf[BITS_TO_LONGS(ATH_TID_MAX_BUFS)];
242 u16 seq_start;
243 u16 seq_next;
244 u16 baw_size;
245 int tidno;
246 int baw_head; /* first un-acked tx buffer */

--- 456 unchanged lines hidden ---
240 struct ath_node *an;
241 struct ath_atx_ac *ac;
242 unsigned long tx_buf[BITS_TO_LONGS(ATH_TID_MAX_BUFS)];
243 u16 seq_start;
244 u16 seq_next;
245 u16 baw_size;
246 int tidno;
247 int baw_head; /* first un-acked tx buffer */

--- 456 unchanged lines hidden ---