summaryrefslogtreecommitdiff
path: root/CORE/SAP/src/sapModule.c
diff options
context:
space:
mode:
authorRavi Joshi <ravij@qca.qualcomm.com>2014-05-06 18:58:11 -0700
committerPitani Venkata Rajesh Kumar <c_vpitan@qti.qualcomm.com>2014-05-14 12:47:25 +0530
commitf6fa2b4e04f84f4f4dadacd4eb4991f007152954 (patch)
tree4668c6a3396da95d9db729a1b98bfdc8228672a6 /CORE/SAP/src/sapModule.c
parenta004e111e65fdebb58d76132adef41954e7e1129 (diff)
wlan: Remove references to WNI_CFG_BSSID and WNI_CFG_BSSID_LEN
WNI_CFG_BSSID cfg item is global and was designed to be used when there is only one session. Given that the driver supports more than one sessions and each have their own BSSIDs, this CFG item does not make sense to be used. Change-Id: I2f3abb2b9c468240276625027363ea5b4457d6df CRs-Fixed: 660400
Diffstat (limited to 'CORE/SAP/src/sapModule.c')
-rw-r--r--CORE/SAP/src/sapModule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SAP/src/sapModule.c b/CORE/SAP/src/sapModule.c
index 0eafd7957ccf..ac81ee56db4a 100644
--- a/CORE/SAP/src/sapModule.c
+++ b/CORE/SAP/src/sapModule.c
@@ -1794,7 +1794,7 @@ WLANSAP_DelKeySta
vos_mem_zero(&RemoveKeyInfo, sizeof(RemoveKeyInfo));
RemoveKeyInfo.encType = pRemoveKeyInfo->encType;
- vos_mem_copy(RemoveKeyInfo.peerMac, pRemoveKeyInfo->peerMac, WNI_CFG_BSSID_LEN);
+ vos_mem_copy(RemoveKeyInfo.peerMac, pRemoveKeyInfo->peerMac, VOS_MAC_ADDR_SIZE);
RemoveKeyInfo.keyId = pRemoveKeyInfo->keyId;
halStatus = sme_RoamRemoveKey(hHal, pSapCtx->sessionId, &RemoveKeyInfo, &roamId);