From: Guenter Roeck <linux@roeck-us.net>
To: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Cc: Jean Delvare <jdelvare@suse.com>,
Alexander Stein <alexander.stein@ew.tq-group.com>,
linux-hwmon@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] hwmon: (pwm-fan) Explicitly switch off fan power when setting pwm1_enable to 0
Date: Fri, 14 Oct 2022 09:51:29 -0700 [thread overview]
Message-ID: <20221014165129.GA234611@roeck-us.net> (raw)
In-Reply-To: <20221013135951.4902-1-matthias.schiffer@ew.tq-group.com>
On Thu, Oct 13, 2022 at 03:59:51PM +0200, Matthias Schiffer wrote:
> When pwm1_enable is changed from 1 to 0 while pwm1 == 0, the regulator
> is not switched off as expected. The reason is that when the fan is
> already off, ctx->enabled is false, so pwm_fan_power_off() will be a
> no-op.
>
> Handle this case explicitly in pwm_fan_update_enable() by calling
> pwm_fan_switch_power() directly.
>
> Fixes: b99152d4f04b ("hwmon: (pwm-fan) Switch regulator dynamically")
> Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Applied.
Thanks,
Guenter
> ---
> drivers/hwmon/pwm-fan.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/hwmon/pwm-fan.c b/drivers/hwmon/pwm-fan.c
> index dc3d9a22d917..83a347ca35da 100644
> --- a/drivers/hwmon/pwm-fan.c
> +++ b/drivers/hwmon/pwm-fan.c
> @@ -257,7 +257,10 @@ static int pwm_fan_update_enable(struct pwm_fan_ctx *ctx, long val)
>
> if (val == 0) {
> /* Disable pwm-fan unconditionally */
> - ret = __set_pwm(ctx, 0);
> + if (ctx->enabled)
> + ret = __set_pwm(ctx, 0);
> + else
> + ret = pwm_fan_switch_power(ctx, false);
> if (ret)
> ctx->enable_mode = old_val;
> pwm_fan_update_state(ctx, 0);
prev parent reply other threads:[~2022-10-14 16:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-13 13:59 [PATCH] hwmon: (pwm-fan) Explicitly switch off fan power when setting pwm1_enable to 0 Matthias Schiffer
2022-10-14 16:51 ` Guenter Roeck [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221014165129.GA234611@roeck-us.net \
--to=linux@roeck-us.net \
--cc=alexander.stein@ew.tq-group.com \
--cc=jdelvare@suse.com \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=matthias.schiffer@ew.tq-group.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox