From 83d87f28f847627e7d996ff4a5def9ecc98da397 Mon Sep 17 00:00:00 2001 From: Leonid Lobachev Date: Tue, 11 Jun 2019 11:40:27 -0700 Subject: [PATCH] staging: gasket: Enable DFS and thermal shutdown by default Change-Id: I6f9f910f3fa7fdefa1ed3a9d81bb35fb69b68fbb Signed-off-by: Leonid Lobachev --- apex_driver.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apex_driver.c b/apex_driver.c index 4476b67..7389cf8 100644 --- a/apex_driver.c +++ b/apex_driver.c @@ -65,7 +65,7 @@ #define APEX_RESET_DELAY 100 /* Interval between temperature polls, 0 disables polling */ -#define DEFAULT_APEX_TEMP_POLL_INTERVAL 0 +#define DEFAULT_APEX_TEMP_POLL_INTERVAL 5000 /* apex device private data */ struct apex_dev { @@ -288,9 +288,9 @@ module_param(trip_point2_temp, int, 0644); hw_temp_warn*_en is set to true. */ static int hw_temp_warn1 = 100000; -static int hw_temp_warn2 = 110000; +static int hw_temp_warn2 = 100000; static bool hw_temp_warn1_en = false; -static bool hw_temp_warn2_en = false; +static bool hw_temp_warn2_en = true; module_param(hw_temp_warn1, int, 0644); module_param(hw_temp_warn2, int, 0644);