summaryrefslogtreecommitdiff
path: root/board/moli/fans.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/moli/fans.c')
-rw-r--r--board/moli/fans.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/board/moli/fans.c b/board/moli/fans.c
index f2a70636d0..7ad99d4af1 100644
--- a/board/moli/fans.c
+++ b/board/moli/fans.c
@@ -1,4 +1,4 @@
-/* Copyright 2022 The Chromium OS Authors. All rights reserved.
+/* Copyright 2022 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -25,21 +25,15 @@ BUILD_ASSERT(ARRAY_SIZE(mft_channels) == MFT_CH_COUNT);
static const struct fan_conf fan_conf_0 = {
.flags = FAN_USE_RPM_MODE,
- .ch = MFT_CH_0, /* Use MFT id to control fan */
+ .ch = MFT_CH_0, /* Use MFT id to control fan */
.pgood_gpio = -1,
.enable_gpio = GPIO_EN_PP5000_FAN,
};
-/*
- * TOOD(b/197478860): need to update for real fan
- *
- * Prototype fan spins at about 7200 RPM at 100% PWM.
- * Set minimum at around 30% PWM.
- */
static const struct fan_rpm fan_rpm_0 = {
- .rpm_min = 2200,
- .rpm_start = 2200,
- .rpm_max = 7200,
+ .rpm_min = 1500,
+ .rpm_start = 1500,
+ .rpm_max = 5200,
};
const struct fan_t fans[FAN_CH_COUNT] = {