summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasanthakumar Thiagarajan <vthiagar@qti.qualcomm.com>2014-06-13 22:58:24 +0900
committerPitani Venkata Rajesh Kumar <c_vpitan@qti.qualcomm.com>2014-06-15 00:39:52 +0530
commit964085ee7876f8eb83d30e70fabc2141d40bbbbd (patch)
tree6bc76d973d40356e0abb140a4588c1d92b32b5b4
parent1364c1b76653fc3c980e0e647f1c35c3f9b7cf9c (diff)
qcacld/lim: Fix roaming failure due to incorrect txpower
Fill MaxTxpower for roaming station in limProcessStaMlmAddBssRspFT(). Without this, wma is getting 0 as tx power. Most of the tx paskets are not getting acked with 0 as tx power Change-Id: I18cfb82327cd32677909532e8af4563803bbbd80 CRs-Fixed: 680012
-rw-r--r--CORE/MAC/src/pe/lim/limProcessMlmRspMessages.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/CORE/MAC/src/pe/lim/limProcessMlmRspMessages.c b/CORE/MAC/src/pe/lim/limProcessMlmRspMessages.c
index fe9995da3331..b1529abc1dc5 100644
--- a/CORE/MAC/src/pe/lim/limProcessMlmRspMessages.c
+++ b/CORE/MAC/src/pe/lim/limProcessMlmRspMessages.c
@@ -2965,6 +2965,7 @@ limProcessStaMlmAddBssRspFT(tpAniSirGlobal pMac, tpSirMsgQ limMsgQ, tpPESession
wlan_cfgGetInt(pMac, WNI_CFG_DOT11_MODE, &selfStaDot11Mode);
pAddStaParams->supportedRates.opRateMode = limGetStaRateMode((tANI_U8)selfStaDot11Mode);
pAddStaParams->encryptType = psessionEntry->encryptType;
+ pAddStaParams->maxTxPower = psessionEntry->maxTxPower;
// Lets save this for when we receive the Reassoc Rsp
pMac->ft.ftPEContext.pAddStaReq = pAddStaParams;