diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2016-09-08 14:51:43 -0700 |
|---|---|---|
| committer | Jeff Johnson <jjohnson@codeaurora.org> | 2016-09-15 09:41:29 -0700 |
| commit | d404d03538e724da995f201f300a435a15889dd3 (patch) | |
| tree | 9ced6d9f6b24599ac326f65fcf1cbbdd68ba43dd | |
| parent | 1c17173df3cd6bd393000fa175a21099792376bb (diff) | |
qcacld-3.0: Re-fix max dwell time for passive scan beacon report
Previously change "qcacld-3.0: Fix max dwell time for passive scan
beacon report" (Change-Id: Idc0b4f15f2b7464507aacfaefb99e1ba48ad1eca)
modified the default value of the "rm_capability" INI item, but it
also included other changes which incorrectly utilized the obsolete
gRrmOperChanMax & gRrmNonOperChanMax INI items. Since those INI items
are going to be removed from the code, the original implementation of
"qcacld-3.0: Fix max dwell time for passive scan beacon report" was
reverted. To correctly solve the original problem, bring forward the
change to update CFG_RM_CAPABILITY_DEFAULT.
Change-Id: I7a473a5babf7a7b32a633ea1fe6373574457dcb3
CRs-Fixed: 1060775
| -rw-r--r-- | core/hdd/inc/wlan_hdd_cfg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/hdd/inc/wlan_hdd_cfg.h b/core/hdd/inc/wlan_hdd_cfg.h index d6110a659b45..c38b9be2512b 100644 --- a/core/hdd/inc/wlan_hdd_cfg.h +++ b/core/hdd/inc/wlan_hdd_cfg.h @@ -846,11 +846,11 @@ typedef enum { * (last 4bytes are reserved). Bit details are updated as per * Draft version of 11mc spec. (Draft P802.11REVmc_D4.2) * - * Bitwise details are defined as bit mask in rrmGlobal.h + * Bitwise details are defined as bit mask in rrm_global.h * Comma is used as a separator for each byte. */ #define CFG_RM_CAPABILITY_NAME "rm_capability" -#define CFG_RM_CAPABILITY_DEFAULT "73,10,6D,00,04" +#define CFG_RM_CAPABILITY_DEFAULT "73,10,91,00,04" #define CFG_QOS_IMPLICIT_SETUP_ENABLED_NAME "ImplicitQosIsEnabled" #define CFG_QOS_IMPLICIT_SETUP_ENABLED_MIN (0) |
