diff options
| author | Agrawal Ashish <ashishka@qti.qualcomm.com> | 2016-07-04 18:09:42 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-07-07 15:36:26 +0530 |
| commit | 2dd4d5eb774b65e25385dde7bc2f87282e54ec8e (patch) | |
| tree | 80f9c4e3cd0ea781bddfaa54ce74b4b6b4e22b88 | |
| parent | afd120035e883034e489c968698932de71665360 (diff) | |
qcacld-2.0: Allow different beacon intervals for SAP
Currently if user space sends two different beacon
interval in AP+AP, driver is not updating correct beacon interval.
Beacon interval should be sent as per session.
Change-Id: I13653701e7ed6fb2eb643bbb8e20e7c0102c2ec2
CRs-Fixed: 1037455
| -rw-r--r-- | CORE/MAC/src/pe/sch/schBeaconGen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/MAC/src/pe/sch/schBeaconGen.c b/CORE/MAC/src/pe/sch/schBeaconGen.c index 6969d29322db..7a8a96cba6cd 100644 --- a/CORE/MAC/src/pe/sch/schBeaconGen.c +++ b/CORE/MAC/src/pe/sch/schBeaconGen.c @@ -241,7 +241,7 @@ tSirRetStatus schSetFixedBeaconFields(tpAniSirGlobal pMac,tpPESession psessionEn /* Skip over the time stamp (it'll be updated later). */ - pBcn1->BeaconInterval.interval = pMac->sch.schObject.gSchBeaconInterval; + pBcn1->BeaconInterval.interval = psessionEntry->beaconParams.beaconInterval; PopulateDot11fCapabilities( pMac, &pBcn1->Capabilities, psessionEntry ); if (psessionEntry->ssidHidden) { |
