aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/mwifiex/wmm.c
diff options
context:
space:
mode:
authorYogesh Ashok Powar <yogeshp@marvell.com>2012-03-12 22:35:08 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-03-13 14:54:17 -0400
commit3e822635a79c55a7768ec38cd5007081dae95171 (patch)
treedcb3068d82282ab13d02d2a2c9d243e4571dae53 /drivers/net/wireless/mwifiex/wmm.c
parenta8286911881948c7a2ecc63ee4224c258cce2da3 (diff)
mwifiex: rename long function names to shorter ones
This saves some space and adds better readability. Signed-off-by: Yogesh Ashok Powar <yogeshp@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.c')
-rw-r--r--drivers/net/wireless/mwifiex/wmm.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/net/wireless/mwifiex/wmm.c b/drivers/net/wireless/mwifiex/wmm.c
index 75f79ef9f6cf..5757ebd2163a 100644
--- a/drivers/net/wireless/mwifiex/wmm.c
+++ b/drivers/net/wireless/mwifiex/wmm.c
@@ -1218,15 +1218,13 @@ mwifiex_dequeue_tx_packet(struct mwifiex_adapter *adapter)
1218 } else { 1218 } else {
1219 if (mwifiex_is_ampdu_allowed(priv, tid)) { 1219 if (mwifiex_is_ampdu_allowed(priv, tid)) {
1220 if (mwifiex_space_avail_for_new_ba_stream(adapter)) { 1220 if (mwifiex_space_avail_for_new_ba_stream(adapter)) {
1221 mwifiex_11n_create_tx_ba_stream_tbl(priv, 1221 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1222 ptr->ra, tid, 1222 BA_SETUP_INPROGRESS);
1223 BA_STREAM_SETUP_INPROGRESS);
1224 mwifiex_send_addba(priv, tid, ptr->ra); 1223 mwifiex_send_addba(priv, tid, ptr->ra);
1225 } else if (mwifiex_find_stream_to_delete 1224 } else if (mwifiex_find_stream_to_delete
1226 (priv, tid, &tid_del, ra)) { 1225 (priv, tid, &tid_del, ra)) {
1227 mwifiex_11n_create_tx_ba_stream_tbl(priv, 1226 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1228 ptr->ra, tid, 1227 BA_SETUP_INPROGRESS);
1229 BA_STREAM_SETUP_INPROGRESS);
1230 mwifiex_send_delba(priv, tid_del, ra, 1); 1228 mwifiex_send_delba(priv, tid_del, ra, 1);
1231 } 1229 }
1232 } 1230 }