summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authoramber.chen <amber.chen@lcfc.corp-partner.google.com>2022-08-15 10:30:40 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-08-15 06:49:11 +0000
commit98641ff3ea8faf65316ca04da245d0c343abc490 (patch)
tree44ff8ddc27b63c6079ec86349098dacedb71cb71 /board
parent3aee98e43724c18c222b7114ac1196bc7d53b2be (diff)
downloadchrome-ec-98641ff3ea8faf65316ca04da245d0c343abc490.tar.gz
taeko: increase the max of temperature setting to 70 degrees
increase the max of temperature setting to 70 degrees BUG=b:215033683 BRANCH=none TEST=make -j BOARD=taeko Signed-off-by: amber.chen <amber.chen@lcfc.corp-partner.google.com> Change-Id: I34d752ebf4b9e88ee0ad12460a9c68b8a4e76f6e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3829327 Reviewed-by: Boris Mittelberg <bmbm@google.com>
Diffstat (limited to 'board')
-rw-r--r--board/taeko/sensors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/taeko/sensors.c b/board/taeko/sensors.c
index 2354468ed1..331ec82ba6 100644
--- a/board/taeko/sensors.c
+++ b/board/taeko/sensors.c
@@ -367,7 +367,7 @@ BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
[EC_TEMP_THRESH_HIGH] = C_TO_K(85), \
}, \
.temp_fan_off = C_TO_K(35), \
- .temp_fan_max = C_TO_K(60), \
+ .temp_fan_max = C_TO_K(70), \
}
__maybe_unused static const struct ec_thermal_config thermal_cpu = THERMAL_CPU;
@@ -397,7 +397,7 @@ __maybe_unused static const struct ec_thermal_config thermal_cpu = THERMAL_CPU;
[EC_TEMP_THRESH_HIGH] = C_TO_K(85), \
}, \
.temp_fan_off = C_TO_K(35), \
- .temp_fan_max = C_TO_K(60), \
+ .temp_fan_max = C_TO_K(70), \
}
__maybe_unused static const struct ec_thermal_config thermal_fan = THERMAL_FAN;