From: Hans de Goede <hdegoede@redhat.com>
To: Mark Gross <markgross@kernel.org>, Andy Shevchenko <andy@kernel.org>
Cc: platform-driver-x86@vger.kernel.org
Subject: Re: [PATCH] platform/x86: thinkpad_acpi: Fix thinklight LED brightness returning 255
Date: Mon, 30 Jan 2023 14:49:05 +0100 [thread overview]
Message-ID: <ef698dd2-8620-7ebf-7e79-3280dada148e@redhat.com> (raw)
In-Reply-To: <20230127235723.412864-1-hdegoede@redhat.com>
Hi,
On 1/28/23 00:57, Hans de Goede wrote:
> Reading the thinklight LED brightnes while the LED is on returns
> 255 (LED_FULL) but we advertise a max_brightness of 1, so this should
> be 1 (LED_ON).
>
> Fixes: db5e2a4ca0a7 ("platform/x86: thinkpad_acpi: Fix max_brightness of thinklight")
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
I've applied this to the pdx86 fixes branch now:
https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=fixes
and this will be included in my next fixes pull-req to Linus.
Regards,
Hans
> ---
> drivers/platform/x86/thinkpad_acpi.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c
> index 02860c32625e..32c10457399e 100644
> --- a/drivers/platform/x86/thinkpad_acpi.c
> +++ b/drivers/platform/x86/thinkpad_acpi.c
> @@ -5563,7 +5563,7 @@ static int light_sysfs_set(struct led_classdev *led_cdev,
>
> static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
> {
> - return (light_get_status() == 1) ? LED_FULL : LED_OFF;
> + return (light_get_status() == 1) ? LED_ON : LED_OFF;
> }
>
> static struct tpacpi_led_classdev tpacpi_led_thinklight = {
prev parent reply other threads:[~2023-01-30 13:49 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-27 23:57 [PATCH] platform/x86: thinkpad_acpi: Fix thinklight LED brightness returning 255 Hans de Goede
2023-01-30 13:49 ` Hans de Goede [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=ef698dd2-8620-7ebf-7e79-3280dada148e@redhat.com \
--to=hdegoede@redhat.com \
--cc=andy@kernel.org \
--cc=markgross@kernel.org \
--cc=platform-driver-x86@vger.kernel.org \
/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