summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrishna Kumaar Natarajan <kknatara@qca.qualcomm.com>2014-09-04 13:40:06 -0700
committerAkash Patel <c_akashp@qca.qualcomm.com>2014-09-08 18:27:46 -0700
commitc7d208116bf3bb3ec2ca377afee2e86c2d638295 (patch)
treeacb8750d171c3e27849642129408a3b4f59a36e2
parent23aa9ae4b5ff8df40a22a8095b849ba9d1dfc54c (diff)
qcacld: Fix to notify that there is an update in Beacon template
Currently, When there is an update in beacon template due to additional IEs notify flag is used to indicate LIM to trigger an update to FW. But notify flag is not copied correctly and as a result updates are not sent in time. This change set will fix the existing problem by copying the notify flag passed from SME which then triggers Beacon template update on time. Change-Id: Ib504bddd05b35055302ce31d5cbe074d72f78932 CRs-Fixed: 719753
-rw-r--r--CORE/SME/src/csr/csrApiRoam.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/CORE/SME/src/csr/csrApiRoam.c b/CORE/SME/src/csr/csrApiRoam.c
index 8de3b3eb8759..087772250555 100644
--- a/CORE/SME/src/csr/csrApiRoam.c
+++ b/CORE/SME/src/csr/csrApiRoam.c
@@ -18402,6 +18402,7 @@ csrRoamUpdateAddIEs(tpAniSirGlobal pMac,
pUpdateAddIEs->updateIE.smeSessionId = pUpdateIE->smeSessionId;
pUpdateAddIEs->updateIE.append = pUpdateIE->append;
+ pUpdateAddIEs->updateIE.notify = pUpdateIE->notify;
pUpdateAddIEs->updateIE.ieBufferlength = pUpdateIE->ieBufferlength;
pUpdateAddIEs->updateIE.pAdditionIEBuffer = pLocalBuffer;