platform/x86: acer-wmi: Use backlight helper
authorStephen Kitt <steve@sk2.org>
Tue, 7 Jun 2022 18:46:32 +0000 (20:46 +0200)
committerHans de Goede <hdegoede@redhat.com>
Wed, 22 Jun 2022 09:53:17 +0000 (11:53 +0200)
Instead of retrieving the backlight brightness in struct
backlight_properties manually, and then checking whether the backlight
should be on at all, use backlight_get_brightness() which does all
this and insulates this from future changes.

Signed-off-by: Stephen Kitt <steve@sk2.org>
Cc: "Lee, Chun-Yi" <jlee@suse.com>
Cc: Hans de Goede <hdegoede@redhat.com>
Cc: Mark Gross <markgross@kernel.org>
Cc: platform-driver-x86@vger.kernel.org
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Link: https://lore.kernel.org/r/20220607184635.1127913-2-steve@sk2.org
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/acer-wmi.c

index 9c6943e401a6c60245d65964263d617f60e3b1d6..e0230ea0cb7ee9c9e1c578198689362a8c5414db 100644 (file)
@@ -1615,12 +1615,7 @@ static int read_brightness(struct backlight_device *bd)
 
 static int update_bl_status(struct backlight_device *bd)
 {
-       int intensity = bd->props.brightness;
-
-       if (bd->props.power != FB_BLANK_UNBLANK)
-               intensity = 0;
-       if (bd->props.fb_blank != FB_BLANK_UNBLANK)
-               intensity = 0;
+       int intensity = backlight_get_brightness(bd);
 
        set_u32(intensity, ACER_CAP_BRIGHTNESS);