summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorridden_liu <ridden_liu@compal.corp-partner.google.com>2022-07-28 16:22:01 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-08-03 06:42:14 +0000
commit490ad4135c7236a914b654f3df8040ebcaa83aab (patch)
tree4a002856ebb2fd99375cc0e6d553d89f73d6c418
parent4c60e8a1f26c2ae811bfd15b5990d968a0ea28a2 (diff)
downloadchrome-ec-490ad4135c7236a914b654f3df8040ebcaa83aab.tar.gz
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 <ridden_liu@compal.corp-partner.google.com> Change-Id: Ib3b17745df128f868f2d194df7e06638d92064c8 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3789208 Reviewed-by: Elthan Huang <elthan_huang@compal.corp-partner.google.com> Reviewed-by: Boris Mittelberg <bmbm@google.com> Tested-by: Elthan Huang <elthan_huang@compal.corp-partner.google.com>
-rw-r--r--board/banshee/sensors.c6
1 files 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 =