summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPadma, Santhosh Kumar <skpadma@qti.qualcomm.com>2014-07-28 15:49:27 +0530
committerAkash Patel <c_akashp@qca.qualcomm.com>2014-09-04 17:55:06 -0700
commit3eeea5eccda197918066e6cbffdc1da2f4a586e0 (patch)
tree1338d947e411bbf3b2ea5fe039c007c439d44e3e
parente04df502573a2a0f2b3b2849c29823dc1ae77070 (diff)
qcacld: Update 5GHz channel bonding mode
It's an initial effort to support channel 144 on qcacld-new. This fix includes the check for channel 144 and updates channelBondingMode5GHz accordingly. Change-Id: I27e617d91ba8abe9ae9ac4ca9411f55b4f18d1b1 CRs-Fixed: 628277
-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 513832b30bf9..c0b042256652 100644
--- a/CORE/SME/src/sme_common/sme_Api.c
+++ b/CORE/SME/src/sme_common/sme_Api.c
@@ -11421,7 +11421,7 @@ VOS_STATUS sme_SelectCBMode(tHalHandle hHal, eCsrPhyMode eCsrPhyMode, tANI_U8 ch
eCSR_INI_QUADRUPLE_CHANNEL_20MHZ_LOW_40MHZ_HIGH;
}
else if ( channel == 48 || channel == 64 || channel == 112 ||
- channel == 128 || channel == 161 )
+ channel == 128 || channel == 144 || channel == 161 )
{
smeConfig.csrConfig.channelBondingMode5GHz =
eCSR_INI_QUADRUPLE_CHANNEL_20MHZ_HIGH_40MHZ_HIGH;