From 3127d7e5d94b34e19b06369cbaa6c4877a823c5a Mon Sep 17 00:00:00 2001 From: Rob Barnes Date: Wed, 7 Sep 2022 16:03:34 +0000 Subject: guybrush: Set temp_fan_off value Set a conservative value for temp_fan_off. This was previously 0, which keeps the fan always on. BUG=b:233370444 BRANCH=guybrush TEST=Build Change-Id: I95df701917187abbbca1821873a3bcd69407465b Signed-off-by: Rob Barnes Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3877937 Commit-Queue: Jonathon Murphy Reviewed-by: Jonathon Murphy --- board/guybrush/board.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'board') diff --git a/board/guybrush/board.c b/board/guybrush/board.c index 019d68da22..e388c359bb 100644 --- a/board/guybrush/board.c +++ b/board/guybrush/board.c @@ -479,8 +479,7 @@ struct ec_thermal_config thermal_params[TEMP_SENSOR_COUNT] = { .temp_host_release = { [EC_TEMP_THRESH_HIGH] = C_TO_K(80), }, - /* TODO: Setting fan off to 0 so it's allways on */ - .temp_fan_off = C_TO_K(0), + .temp_fan_off = C_TO_K(25), .temp_fan_max = C_TO_K(70), }, [TEMP_SENSOR_CHARGER] = { -- cgit v1.2.1