aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/ht.c
diff options
context:
space:
mode:
authorJohn W. Linville <linville@tuxdriver.com>2009-01-12 14:37:44 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-01-13 10:25:45 -0500
commit85b9e4fe13de9b35af1dbd50acc5f4978b9119ee (patch)
treee700891c2ec37bd8dc448237475e4d8167aaa755 /net/mac80211/ht.c
parent51e99158d261a5ec5772ca89b935c3daa270b07c (diff)
downloadkernel_samsung_smdk4412-85b9e4fe13de9b35af1dbd50acc5f4978b9119ee.zip
kernel_samsung_smdk4412-85b9e4fe13de9b35af1dbd50acc5f4978b9119ee.tar.gz
kernel_samsung_smdk4412-85b9e4fe13de9b35af1dbd50acc5f4978b9119ee.tar.bz2
mac80211: fix "‘ret’ may be used uninitialized" warning
net/mac80211/ht.c: In function ‘ieee80211_start_tx_ba_session’: net/mac80211/ht.c:472: warning: ‘ret’ may be used uninitialized in this function Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/ht.c')
-rw-r--r--net/mac80211/ht.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/ht.c b/net/mac80211/ht.c
index 5f510a1..c5c0c52 100644
--- a/net/mac80211/ht.c
+++ b/net/mac80211/ht.c
@@ -469,7 +469,7 @@ int ieee80211_start_tx_ba_session(struct ieee80211_hw *hw, u8 *ra, u16 tid)
struct ieee80211_sub_if_data *sdata;
u16 start_seq_num;
u8 *state;
- int ret;
+ int ret = 0;
if ((tid >= STA_TID_NUM) || !(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
return -EINVAL;