diff options
| author | Deepthi Gowri <c_gowri@qti.qualcomm.com> | 2016-04-25 20:59:37 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-04-27 14:44:01 +0530 |
| commit | a0e2cca3a01dd79ee53ee0ea0d0c90f3be673697 (patch) | |
| tree | 435d551a7e80cbd93978b5570ed4171756ad2c14 | |
| parent | 2943b22ba4577eed1b01afe9c35cbb76dd013e49 (diff) | |
qcacld-2.0: Reset use_protection when legacy AP goes away
use_protection in erp IE was not reset after legacy AP goes away
which was leading to reduced throughput issue.
Fix is to reset protection bit and update the FW once legacy AP
goes away.
Change-Id: I4138434477e1de432b9547ce1aec4968a559188f
CRs-Fixed: 1006601
| -rw-r--r-- | CORE/MAC/src/pe/lim/limSession.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CORE/MAC/src/pe/lim/limSession.c b/CORE/MAC/src/pe/lim/limSession.c index d830b091a4a0..60122c056b12 100644 --- a/CORE/MAC/src/pe/lim/limSession.c +++ b/CORE/MAC/src/pe/lim/limSession.c @@ -203,6 +203,7 @@ void pe_reset_protection_callback(void *ptr) pe_session_entry->beaconParams.fRIFSMode; beacon_params.smeSessionId = pe_session_entry->smeSessionId; + beacon_params.paramChangeBitmap |= PARAM_llBCOEXIST_CHANGED; bcn_prms_changed = true; } |
