diff options
author | Avinash Patil <patila@marvell.com> | 2012-01-25 08:50:24 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-01-27 23:57:02 +0400 |
commit | 2690e1bb35e97a3b15f0064e9176cd2ec61c2511 (patch) | |
tree | 5c682419e1fb513c3723f812c97d851226b98fd5 /drivers/net/wireless/mwifiex/wmm.h | |
parent | 10ef6a8f1567739192c29f11375556ce0d53ec74 (diff) | |
download | linux-2690e1bb35e97a3b15f0064e9176cd2ec61c2511.tar.xz |
mwifiex: pass priv pointer instead of adapter
Pass mwifiex_private pointer directly to wmm_add_buf_txqueue()
instead of passing adapter and then deriving priv again in
mwifiex_get_priv_by_id(). This reduces a 'for' loop in TX path.
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/wmm.h')
-rw-r--r-- | drivers/net/wireless/mwifiex/wmm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/mwifiex/wmm.h b/drivers/net/wireless/mwifiex/wmm.h index fcea1f68792f..ec839952d2e7 100644 --- a/drivers/net/wireless/mwifiex/wmm.h +++ b/drivers/net/wireless/mwifiex/wmm.h @@ -80,8 +80,8 @@ mwifiex_wmm_is_ra_list_empty(struct list_head *ra_list_hhead) return true; } -void mwifiex_wmm_add_buf_txqueue(struct mwifiex_adapter *adapter, - struct sk_buff *skb); +void mwifiex_wmm_add_buf_txqueue(struct mwifiex_private *priv, + struct sk_buff *skb); void mwifiex_ralist_add(struct mwifiex_private *priv, u8 *ra); int mwifiex_wmm_lists_empty(struct mwifiex_adapter *adapter); |