summaryrefslogtreecommitdiff
path: root/CORE/SAP
diff options
context:
space:
mode:
authorKiran Kumar Lokere <klokere@qca.qualcomm.com>2014-01-24 13:06:47 -0800
committerPrakash Dhavali <pdhavali@qca.qualcomm.com>2014-01-26 00:02:54 -0800
commit2b4584f2c3ec7b18549d158e7f4a78d0b2b950be (patch)
treed712b7d9a67e41161948d8929f4b4b6bc39ed78e /CORE/SAP
parent74dfecbe62ce7d093b70d6e852b4159b86444950 (diff)
Fix SAP channel width issue after DFS channel switch
Fixes SAP channel width issue when DFS channel switch happens. SAP was coming up with 20MHz channel width after DFS channel switch happend. Change-Id: I8866a61fff5e6eb1e42fc458366a92e2f91b2345 CRs-Fixed: 600131
Diffstat (limited to 'CORE/SAP')
-rw-r--r--CORE/SAP/src/sapModule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/CORE/SAP/src/sapModule.c b/CORE/SAP/src/sapModule.c
index e94f3eb53a54..731ea68c4ca8 100644
--- a/CORE/SAP/src/sapModule.c
+++ b/CORE/SAP/src/sapModule.c
@@ -2414,8 +2414,8 @@ WLANSAP_ChannelChangeRequest(v_PVOID_t pSapCtx, tANI_U8 tArgetChannel)
return VOS_STATUS_E_FAULT;
}
- halStatus = sme_RoamChannelChangeReq( hHal,
- sapContext->sessionId, tArgetChannel);
+ halStatus = sme_RoamChannelChangeReq( hHal, sapContext->sessionId, tArgetChannel,
+ sapConvertSapPhyModeToCsrPhyMode(sapContext->csrRoamProfile.phyMode));
if (halStatus == eHAL_STATUS_SUCCESS)
{