diff options
author | hank.xie <hank.xie@quanta.corp-partner.google.com> | 2023-03-29 05:00:32 -0300 |
---|---|---|
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-03-30 03:02:24 +0000 |
commit | 2301287665bc7c0159ce4fc8558a22393e28eaff (patch) | |
tree | b672b980de419caa21e8d1eb738256de6072038d /board | |
parent | ff5c753c48a04c305ce7fa257038aa207ab9709f (diff) | |
download | chrome-ec-2301287665bc7c0159ce4fc8558a22393e28eaff.tar.gz |
lisbon: Update rpm of real fan
BUG=b:272643403
BRANCH=none
TEST=set fan duty and check the actual rpm of fan
Change-Id: I65dd21f6449bc3f22717cc3a276e90f701e8b681
Signed-off-by: hank.xie <hank.xie@quanta.corp-partner.google.com>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4379822
Reviewed-by: Devin Lu <devin.lu@quantatw.com>
Commit-Queue: Ricky Chang <rickytlchang@chromium.org>
Reviewed-by: Ricky Chang <rickytlchang@chromium.org>
Diffstat (limited to 'board')
-rw-r--r-- | board/lisbon/fans.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/lisbon/fans.c b/board/lisbon/fans.c index 3f3ad3ccea..2bf4c43912 100644 --- a/board/lisbon/fans.c +++ b/board/lisbon/fans.c @@ -37,9 +37,9 @@ static const struct fan_conf fan_conf_0 = { * 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 = 2000, + .rpm_start = 2000, + .rpm_max = 4700, }; const struct fan_t fans[FAN_CH_COUNT] = { |