diff options
author | Hans de Goede <hdegoede@redhat.com> | 2023-01-28 00:57:23 +0100 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2023-01-30 14:37:22 +0100 |
commit | eebf82012dddbdcb09e4e49d3cdfafb93bc66eb2 (patch) | |
tree | 92e13b1fb3d4c102f3cf7b6cd0ad0404fa27fc70 /drivers/platform/x86/thinkpad_acpi.c | |
parent | abce209d18fd26e865b2406cc68819289db973f9 (diff) | |
download | linux-eebf82012dddbdcb09e4e49d3cdfafb93bc66eb2.tar.gz linux-eebf82012dddbdcb09e4e49d3cdfafb93bc66eb2.tar.bz2 linux-eebf82012dddbdcb09e4e49d3cdfafb93bc66eb2.zip |
platform/x86: thinkpad_acpi: Fix thinklight LED brightness returning 255
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>
Link: https://lore.kernel.org/r/20230127235723.412864-1-hdegoede@redhat.com
Diffstat (limited to 'drivers/platform/x86/thinkpad_acpi.c')
-rw-r--r-- | drivers/platform/x86/thinkpad_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 = { |