]> Git Repo - linux.git/commitdiff
backlight: aat2870: Use backlight helper
authorStephen Kitt <[email protected]>
Fri, 6 Jan 2023 16:48:52 +0000 (17:48 +0100)
committerLee Jones <[email protected]>
Wed, 22 Feb 2023 10:55:27 +0000 (10:55 +0000)
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 <[email protected]>
Reviewed-by: Daniel Thompson <[email protected]>
Reviewed-by: Sam Ravnborg <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
drivers/video/backlight/aat2870_bl.c

index a7af9adafad6652968e299f6e3df028ce8fc8bf8..1cbb303e9c88bd8754066e9a4d14cdbd117470cc 100644 (file)
@@ -59,7 +59,7 @@ static int aat2870_bl_update_status(struct backlight_device *bd)
        struct aat2870_bl_driver_data *aat2870_bl = bl_get_data(bd);
        struct aat2870_data *aat2870 =
                        dev_get_drvdata(aat2870_bl->pdev->dev.parent);
-       int brightness = bd->props.brightness;
+       int brightness = backlight_get_brightness(bd);
        int ret;
 
        if ((brightness < 0) || (bd->props.max_brightness < brightness)) {
@@ -70,11 +70,6 @@ static int aat2870_bl_update_status(struct backlight_device *bd)
        dev_dbg(&bd->dev, "brightness=%d, power=%d, state=%d\n",
                 bd->props.brightness, bd->props.power, bd->props.state);
 
-       if ((bd->props.power != FB_BLANK_UNBLANK) ||
-                       (bd->props.state & BL_CORE_FBBLANK) ||
-                       (bd->props.state & BL_CORE_SUSPENDED))
-               brightness = 0;
-
        ret = aat2870->write(aat2870, AAT2870_BLM,
                             (u8)aat2870_brightness(aat2870_bl, brightness));
        if (ret < 0)
This page took 0.061016 seconds and 4 git commands to generate.