diff options
author | Avinash Patil <patila@marvell.com> | 2013-07-22 19:17:39 -0700 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-07-24 11:02:04 -0400 |
commit | f0cb84f8a1925ad1ff0a10c345b83db5f8043428 (patch) | |
tree | 2d93ed5ba93e9d88504f18fdce77c505ca45bc22 /drivers/net/wireless/mwifiex/main.h | |
parent | 0e15370dbc7ab4d4ffd006620024ac3a52cc8c43 (diff) | |
download | lwn-f0cb84f8a1925ad1ff0a10c345b83db5f8043428.tar.gz lwn-f0cb84f8a1925ad1ff0a10c345b83db5f8043428.zip |
mwifiex: rename pkt_count to ba_pkt_count in mwifiex_ra_list_tbl struct
pkt_count is used to determine if BA can be formed on this RA list
by comparing it with randomly generated BA threshold. The pkt_count
variable name here is ambiguous and does not reflect its usage
correctly. Rename it to ba_pkt_count.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/mwifiex/main.h b/drivers/net/wireless/mwifiex/main.h index 3da73d36acdf..dff95fede51f 100644 --- a/drivers/net/wireless/mwifiex/main.h +++ b/drivers/net/wireless/mwifiex/main.h @@ -207,7 +207,7 @@ struct mwifiex_ra_list_tbl { u32 total_pkts_size; u32 is_11n_enabled; u16 max_amsdu; - u16 pkt_count; + u16 ba_pkt_count; u8 ba_packet_thr; }; |