From 490ad4135c7236a914b654f3df8040ebcaa83aab Mon Sep 17 00:00:00 2001 From: ridden_liu Date: Thu, 28 Jul 2022 16:22:01 +0800 Subject: Banshee: Modified for fan off setting Modified for fan off setting to 50'C BUG=b:223492897 BRANCH=none TEST=Check that the fan is off when it is below 50'C Signed-off-by: ridden_liu Change-Id: Ib3b17745df128f868f2d194df7e06638d92064c8 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3789208 Reviewed-by: Elthan Huang Reviewed-by: Boris Mittelberg Tested-by: Elthan Huang --- board/banshee/sensors.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/board/banshee/sensors.c b/board/banshee/sensors.c index f015aeb7d4..7dbeb62a62 100644 --- a/board/banshee/sensors.c +++ b/board/banshee/sensors.c @@ -130,7 +130,7 @@ BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT); [EC_TEMP_THRESH_WARN] = C_TO_K(75), \ [EC_TEMP_THRESH_HIGH] = C_TO_K(81), \ }, \ - .temp_fan_off = C_TO_K(40), \ + .temp_fan_off = C_TO_K(50), \ .temp_fan_max = C_TO_K(58), \ } __maybe_unused static const struct ec_thermal_config thermal_cpu = THERMAL_CPU; @@ -162,7 +162,7 @@ __maybe_unused static const struct ec_thermal_config thermal_cpu = THERMAL_CPU; [EC_TEMP_THRESH_WARN] = C_TO_K(70), \ [EC_TEMP_THRESH_HIGH] = C_TO_K(86), \ }, \ - .temp_fan_off = C_TO_K(40), \ + .temp_fan_off = C_TO_K(50), \ .temp_fan_max = C_TO_K(58), \ } __maybe_unused static const struct ec_thermal_config thermal_ambient = @@ -193,7 +193,7 @@ __maybe_unused static const struct ec_thermal_config thermal_ambient = [EC_TEMP_THRESH_WARN] = C_TO_K(85), \ [EC_TEMP_THRESH_HIGH] = C_TO_K(91), \ }, \ - .temp_fan_off = C_TO_K(40), \ + .temp_fan_off = C_TO_K(50), \ .temp_fan_max = C_TO_K(58), \ } __maybe_unused static const struct ec_thermal_config thermal_charger = -- cgit v1.2.1