diff options
| author | Deepthi Gowri <c_gowri@qti.qualcomm.com> | 2015-06-11 12:09:26 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2015-06-18 07:13:46 -0700 |
| commit | 8fe8acadad0a4a9b66b0c19fa74876b4b4e38238 (patch) | |
| tree | d84b2e0e6814d910b417a126392515bce8e7ad47 /CORE/SAP/src/sapModule.c | |
| parent | 33a3aecf9a53eed538890eee0024d79c218f1550 (diff) | |
qcacld2.0: Pass the correct reason code to disassoc.
use the same reason code in the disassoc, which the upper
layer has passed to the driver.
Change-Id: I6302a5c8318a8e3c1221b9272637455da4e7f150
CRs-Fixed: 852387
Diffstat (limited to 'CORE/SAP/src/sapModule.c')
| -rw-r--r-- | CORE/SAP/src/sapModule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CORE/SAP/src/sapModule.c b/CORE/SAP/src/sapModule.c index 5caf7c80e33f..4b4e861673f7 100644 --- a/CORE/SAP/src/sapModule.c +++ b/CORE/SAP/src/sapModule.c @@ -1576,7 +1576,7 @@ VOS_STATUS WLANSAP_DisassocSta ( v_PVOID_t pCtx, - const v_U8_t *pPeerStaMac + struct tagCsrDelStaParams *pDelStaParams ) { ptSapContext pSapCtx = VOS_GET_SAP_CB(pCtx); @@ -1593,7 +1593,7 @@ WLANSAP_DisassocSta } sme_RoamDisconnectSta(VOS_GET_HAL_CB(pSapCtx->pvosGCtx), pSapCtx->sessionId, - pPeerStaMac); + pDelStaParams); return VOS_STATUS_SUCCESS; } |
