summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManjeet Singh <manjee@codeaurora.org>2017-01-11 15:15:14 +0530
committerqcabuildsw <qcabuildsw@localhost>2017-01-12 02:19:32 -0800
commit8c0dc469acdfe208ffc7e2e22b6f629d9f1123a5 (patch)
treea1c54bad6e9c7d36d1651d4a632264c55ce97b38
parent6136d3e5f7a937d22ca70ef209bb11d5f362fd7c (diff)
qcacld-3.0: Change gThermalMitigationEnable default value to 0
gThermalMitigationEnable=0 could be deleted in WCNSS_qcom_cfg.ini, this leads gThermalMitigationEnable enable since it is enabled by default in the code. Change gThermalMitigationEnable default value to 0 in code. CRs-Fixed: 1110072 Change-Id: Id02d51a4f7cb983d43d7adaa9055e82fc51c8f2f
-rw-r--r--core/hdd/inc/wlan_hdd_cfg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hdd/inc/wlan_hdd_cfg.h b/core/hdd/inc/wlan_hdd_cfg.h
index b9f7d18b73c0..c50bc47f2306 100644
--- a/core/hdd/inc/wlan_hdd_cfg.h
+++ b/core/hdd/inc/wlan_hdd_cfg.h
@@ -3179,7 +3179,7 @@ typedef enum {
#define CFG_THERMAL_MIGRATION_ENABLE_NAME "gThermalMitigationEnable"
#define CFG_THERMAL_MIGRATION_ENABLE_MIN (0)
#define CFG_THERMAL_MIGRATION_ENABLE_MAX (1)
-#define CFG_THERMAL_MIGRATION_ENABLE_DEFAULT (1)
+#define CFG_THERMAL_MIGRATION_ENABLE_DEFAULT (0)
#define CFG_THROTTLE_PERIOD_NAME "gThrottlePeriod"
#define CFG_THROTTLE_PERIOD_MIN (10)