diff options
| author | Xun Luo <xunl@qca.qualcomm.com> | 2014-06-14 15:53:18 -0700 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-06-18 21:12:47 -0700 |
| commit | 008b1755a3df79ba1571f2f8cf44b1040ae6a03e (patch) | |
| tree | fba305b939cdeb358f9e1d85e628b6940704deb1 | |
| parent | 8b568f92fe0738c855f575d8ef1dce9a6b066b75 (diff) | |
Skip channel 14 only once in channel selection initialization
Channel 14 was implemented as skipping twice which should be just once.
Made the change so that it is done only once, so as to no addtional
channel is skipped accidentally.
Change-Id: I14ab93c5a11f7045f84678c383fc506406ff7bf9
CRs-Fixed: 678952
| -rw-r--r-- | CORE/SAP/src/sapChSelect.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/CORE/SAP/src/sapChSelect.c b/CORE/SAP/src/sapChSelect.c index 7c8ba9508952..33afbd993fcd 100644 --- a/CORE/SAP/src/sapChSelect.c +++ b/CORE/SAP/src/sapChSelect.c @@ -650,7 +650,6 @@ v_BOOL_t sapChanSelInit(tHalHandle halHandle, if(*pChans == 14 && eCSR_DOT11_MODE_11b != sme_GetPhyMode(halHandle)) { - pChans++; continue; } |
