diff options
author | Christian Lamparter <chunkeey@web.de> | 2009-03-23 14:15:43 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-03-28 03:13:14 +0300 |
commit | 4a48e2a484e5cf99da4795cf2d6916e057d533ad (patch) | |
tree | e4c123fcd3193eb32f8fa5464d9279bd1a07d5fd /drivers/net/wireless/ar9170/ar9170.h | |
parent | 04de83815993714a7ba2618f637fa1092a5f664b (diff) | |
download | linux-4a48e2a484e5cf99da4795cf2d6916e057d533ad.tar.xz |
ar9170: simplify & deBUG tx_status queueing and reporting
This patch simplifies the tx_status report code by using four tx_queues per
station instead of only one. (the skb lookup should be in O(1) now :-p ).
Also, it fixes a really obvious copy&paste bug in the janitor work code and
adds back a few spilled bits to the hardware definition header about QoS.
Signed-off-by: Christian Lamparter <chunkeey@web.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ar9170/ar9170.h')
-rw-r--r-- | drivers/net/wireless/ar9170/ar9170.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ar9170/ar9170.h b/drivers/net/wireless/ar9170/ar9170.h index c49d7138d574..f4fb2e94aea0 100644 --- a/drivers/net/wireless/ar9170/ar9170.h +++ b/drivers/net/wireless/ar9170/ar9170.h @@ -159,7 +159,7 @@ struct ar9170 { }; struct ar9170_sta_info { - struct sk_buff_head tx_status; + struct sk_buff_head tx_status[__AR9170_NUM_TXQ]; }; #define IS_STARTED(a) (a->state >= AR9170_STARTED) |