diff options
| author | Naveen Rawat <nrawat@qca.qualcomm.com> | 2014-10-17 16:55:24 -0700 |
|---|---|---|
| committer | AnjaneeDevi Kapparapu <c_akappa@qti.qualcomm.com> | 2014-10-20 17:06:25 +0530 |
| commit | d19871c485aa4193f19639d438ba94de581ae027 (patch) | |
| tree | a807dd06a5e6b156b657c757c0b7f0e9eebfc6b0 /CORE/SAP/src/sapChSelect.h | |
| parent | 7bcab02b31b9664400ab6bf32f1d485d49d4f7f0 (diff) | |
qcacld: New channel of SAP should avoid emission on NOL channels
When SAP select new channel after radar signal on some DFS channel,
new channel selection should strictly avoid emission on NOL channels.
Change-Id: I8d7c1a81a09ef1ad7466a753460e8e31b0dd9b21
CRs-Fixed: 727424
Diffstat (limited to 'CORE/SAP/src/sapChSelect.h')
| -rw-r--r-- | CORE/SAP/src/sapChSelect.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CORE/SAP/src/sapChSelect.h b/CORE/SAP/src/sapChSelect.h index f75b873e63cf..0f4955ba5c7d 100644 --- a/CORE/SAP/src/sapChSelect.h +++ b/CORE/SAP/src/sapChSelect.h @@ -113,7 +113,7 @@ typedef enum CHANNEL_14 } tSapChannel; -#define MAX_80MHZ_BANDS 5 +#define MAX_80MHZ_BANDS 6 #define SAP_80MHZ_MASK 0x0F #define SAP_40MHZ_MASK_L 0x03 #define SAP_40MHZ_MASK_H 0x0C @@ -190,7 +190,11 @@ typedef struct sSapTxLeakInfo { typedef struct sSapChanMatrixInfo { v_U8_t channel; /* channel to switch from */ +#ifdef FEATURE_WLAN_CH144 + tSapTxLeakInfo chan_matrix[RF_CHAN_144 - RF_CHAN_36 + 1]; +#else tSapTxLeakInfo chan_matrix[RF_CHAN_140 - RF_CHAN_36 + 1]; +#endif } tSapChanMatrixInfo; #endif // if !defined __SAP_CH_SELECT_H |
