diff options
author | Avinash Patil <patila@marvell.com> | 2014-02-07 19:27:29 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-02-12 15:36:17 -0500 |
commit | 41a24a29142dd0352de965c40b840a90d6e55f6c (patch) | |
tree | 3d3831e27659e6ccedfde57f96896f274442a1e6 /drivers/net/wireless/mwifiex/main.h | |
parent | eac4322729aebf01ae231d3b3f63aae73d469a57 (diff) |
mwifiex: make tos_to_tid_inv part of mwifiex_private structure
tos_to_tid_inv values are needed even during TDLS restore
operations. Currently tos_to_tid_inv is part of wmm.c and
is declared static.
Make it part of private structure so that it can be used in
other files as well.
Signed-off-by: Avinash Patil <patila@marvell.com>
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex/main.h')
-rw-r--r-- | drivers/net/wireless/mwifiex/main.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/mwifiex/main.h b/drivers/net/wireless/mwifiex/main.h index c473f54ba738..39f661a53df5 100644 --- a/drivers/net/wireless/mwifiex/main.h +++ b/drivers/net/wireless/mwifiex/main.h | |||
@@ -461,6 +461,7 @@ struct mwifiex_private { | |||
461 | struct mwifiex_tx_aggr aggr_prio_tbl[MAX_NUM_TID]; | 461 | struct mwifiex_tx_aggr aggr_prio_tbl[MAX_NUM_TID]; |
462 | struct mwifiex_add_ba_param add_ba_param; | 462 | struct mwifiex_add_ba_param add_ba_param; |
463 | u16 rx_seq[MAX_NUM_TID]; | 463 | u16 rx_seq[MAX_NUM_TID]; |
464 | u8 tos_to_tid_inv[MAX_NUM_TID]; | ||
464 | struct list_head rx_reorder_tbl_ptr; | 465 | struct list_head rx_reorder_tbl_ptr; |
465 | /* spin lock for rx_reorder_tbl_ptr queue */ | 466 | /* spin lock for rx_reorder_tbl_ptr queue */ |
466 | spinlock_t rx_reorder_tbl_lock; | 467 | spinlock_t rx_reorder_tbl_lock; |