staging: gasket: Enable DFS and thermal shutdown by default

Change-Id: I6f9f910f3fa7fdefa1ed3a9d81bb35fb69b68fbb
Signed-off-by: Leonid Lobachev <leonidl@google.com>
This commit is contained in:
Leonid Lobachev
2019-06-11 11:40:27 -07:00
parent 4856195932
commit 83d87f28f8

View File

@@ -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);