]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
backlight: led-backlight: Use backlight power constants
authorThomas Zimmermann <tzimmermann@suse.de>
Mon, 24 Jun 2024 15:20:05 +0000 (17:20 +0200)
committerLee Jones <lee@kernel.org>
Thu, 4 Jul 2024 15:45:25 +0000 (16:45 +0100)
Replace FB_BLANK_ constants with their counterparts from the
backlight subsystem. The values are identical, so there's no
change in functionality.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Link: https://lore.kernel.org/r/20240624152033.25016-11-tzimmermann@suse.de
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/video/backlight/led_bl.c

index 032f8bddf8721e6521106a0f89ec05cdc732ccbd..c7aefcd6e4e3e339278e8fab4f9f5adb92ba76b3 100644 (file)
@@ -200,8 +200,8 @@ static int led_bl_probe(struct platform_device *pdev)
        props.type = BACKLIGHT_RAW;
        props.max_brightness = priv->max_brightness;
        props.brightness = priv->default_brightness;
-       props.power = (priv->default_brightness > 0) ? FB_BLANK_POWERDOWN :
-                     FB_BLANK_UNBLANK;
+       props.power = (priv->default_brightness > 0) ? BACKLIGHT_POWER_OFF :
+                     BACKLIGHT_POWER_ON;
        priv->bl_dev = backlight_device_register(dev_name(&pdev->dev),
                        &pdev->dev, priv, &led_bl_ops, &props);
        if (IS_ERR(priv->bl_dev)) {