summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/dratini/board.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/board/dratini/board.c b/board/dratini/board.c
index 958428dc02..f254e18172 100644
--- a/board/dratini/board.c
+++ b/board/dratini/board.c
@@ -330,31 +330,31 @@ BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
const static struct ec_thermal_config thermal_a = {
.temp_host = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(75),
- [EC_TEMP_THRESH_HALT] = C_TO_K(85),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(73),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(75),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
[EC_TEMP_THRESH_HIGH] = C_TO_K(65),
[EC_TEMP_THRESH_HALT] = 0,
},
- .temp_fan_off = C_TO_K(25),
+ .temp_fan_off = C_TO_K(40),
.temp_fan_max = C_TO_K(70),
};
const static struct ec_thermal_config thermal_b = {
.temp_host = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(75),
- [EC_TEMP_THRESH_HALT] = C_TO_K(75),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(68),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(70),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
[EC_TEMP_THRESH_HIGH] = C_TO_K(65),
[EC_TEMP_THRESH_HALT] = 0,
},
- .temp_fan_off = C_TO_K(25),
- .temp_fan_max = C_TO_K(50),
+ .temp_fan_off = C_TO_K(40),
+ .temp_fan_max = C_TO_K(55),
};
struct ec_thermal_config thermal_params[TEMP_SENSOR_COUNT];