diff options
| author | Kalikinkar dhara <c_kaliki@qca.qualcomm.com> | 2014-04-17 14:36:52 -0700 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-04-18 09:43:39 -0700 |
| commit | c1deca9a36ccc0d2b584f736b3b1595a2a1329bc (patch) | |
| tree | 83727c8ceb3f9ed3627de09cdab1a45a7c7c227e | |
| parent | 399166e8bc647734a6af267183134558bf28ff08 (diff) | |
qcacld: Handle the Mimo PS when SAP receive assoc req.
Parse the Assoc req frame for mimo power save and
update the infor to firmware under SAP mode.
Change-Id: I68f50676b8ce722b173fc3e9e1bcda1730b2967d
CRs-Fixed: 647571
| -rw-r--r-- | CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c b/CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c index f8d95b28761f..086d974294ac 100644 --- a/CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c +++ b/CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c @@ -1393,6 +1393,18 @@ if (limPopulateMatchingRateSet(pMac, } + /* AddSta is sucess here */ + if((psessionEntry->limSystemRole == eLIM_AP_ROLE) && + IS_DOT11_MODE_HT(psessionEntry->dot11mode) && + pAssocReq->HTCaps.present && pAssocReq->wmeInfoPresent) + { + + /** Update in the HAL Station Table for the Update of the Protection Mode */ + limPostSMStateUpdate(pMac,pStaDs->staIndex, + pStaDs->htMIMOPSState, + pStaDs->staAddr, psessionEntry->smeSessionId); + } + return; error: |
