diff options
| author | Deepthi Gowri <c_gowri@qti.qualcomm.com> | 2016-08-04 19:20:46 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-08-11 17:29:02 +0530 |
| commit | 9d2942bc5376d2ce59e657179d54cebe5dc68b22 (patch) | |
| tree | cdf34b0d4b57a298cb17656351753371b9faa991 | |
| parent | 8c20c2750a5adf9c8fa15fadf5090c47a9e5a7d0 (diff) | |
qcacld-2.0: Skip DRSC channels during SAP ACS
We do not support SAP on DSRC channels, so skip the DRSC channels
during sap channel initialization.
CRs-Fixed: 1050454
Change-Id: If5544027bca7bc0a578978dfe91adc37e897e992
| -rw-r--r-- | CORE/SAP/src/sapChSelect.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CORE/SAP/src/sapChSelect.c b/CORE/SAP/src/sapChSelect.c index 03abb736edcf..fa0e3af4fb22 100644 --- a/CORE/SAP/src/sapChSelect.c +++ b/CORE/SAP/src/sapChSelect.c @@ -674,6 +674,9 @@ v_BOOL_t sapChanSelInit(tHalHandle halHandle, { continue; } + /* Skip DSRC channels */ + if (vos_is_dsrc_channel(vos_chan_to_freq(*pChans))) + continue; if (VOS_TRUE == chSafe) { |
