summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Chang <schang@qca.qualcomm.com>2014-03-30 15:15:47 -0700
committerPitani Venkata Rajesh Kumar <c_vpitan@qti.qualcomm.com>2014-04-15 02:06:25 +0530
commit435f5f72de15016a63f8f54a30d979132874d3ef (patch)
tree701f61e7b7978dea6ec793dae5a9be1b1177d963
parent644d9c16fd00d53d38c7bdfd0bf4520e76043a87 (diff)
wlan: CH144 VHT80 fix
If center CH set as CH144, VHT80 is not working. CH144 was missing during CH bonding mode configuration. Add CH144 also for channel bonding configuration. Change-Id: I44e7699a03a0ac32803ec40e86cb9d909a2457ab CRs-fixed: 584100
-rw-r--r--CORE/SME/src/sme_common/sme_Api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SME/src/sme_common/sme_Api.c b/CORE/SME/src/sme_common/sme_Api.c
index 4c17b2f811f6..3d0394eb7b7a 100644
--- a/CORE/SME/src/sme_common/sme_Api.c
+++ b/CORE/SME/src/sme_common/sme_Api.c
@@ -10849,7 +10849,7 @@ VOS_STATUS sme_SelectCBMode(tHalHandle hHal, eCsrPhyMode eCsrPhyMode, tANI_U8 ch
PHY_QUADRUPLE_CHANNEL_20MHZ_LOW_40MHZ_HIGH -1;
}
else if ( channel == 48 || channel == 64 || channel == 112 ||
- channel == 128 || channel == 161 )
+ channel == 128 || channel == 144 || channel == 161 )
{
smeConfig.csrConfig.channelBondingMode5GHz =
PHY_QUADRUPLE_CHANNEL_20MHZ_HIGH_40MHZ_HIGH - 1;