]> Git Repo - linux.git/commitdiff
HID: picoLCD: Use backlight power constants
authorThomas Zimmermann <[email protected]>
Wed, 31 Jul 2024 13:09:50 +0000 (15:09 +0200)
committerJiri Kosina <[email protected]>
Thu, 5 Sep 2024 08:55:15 +0000 (10:55 +0200)
Replace FB_BLANK_ constants with their counterparts from the
backlight subsystem. The values are identical, so there's no
change in functionality or semantics.

Signed-off-by: Thomas Zimmermann <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
drivers/hid/hid-picolcd_backlight.c

index 08d16917eb60be4ff1084ddfc09220aee2759a72..4b43b64537a335817fd033a1d7ab3dd8da76346e 100644 (file)
@@ -31,7 +31,8 @@ static int picolcd_set_brightness(struct backlight_device *bdev)
        data->lcd_brightness = bdev->props.brightness & 0x0ff;
        data->lcd_power      = bdev->props.power;
        spin_lock_irqsave(&data->lock, flags);
-       hid_set_field(report->field[0], 0, data->lcd_power == FB_BLANK_UNBLANK ? data->lcd_brightness : 0);
+       hid_set_field(report->field[0], 0,
+                     data->lcd_power == BACKLIGHT_POWER_ON ? data->lcd_brightness : 0);
        if (!(data->status & PICOLCD_FAILED))
                hid_hw_request(data->hdev, report, HID_REQ_SET_REPORT);
        spin_unlock_irqrestore(&data->lock, flags);
@@ -94,7 +95,7 @@ void picolcd_suspend_backlight(struct picolcd_data *data)
        if (!data->backlight)
                return;
 
-       data->backlight->props.power = FB_BLANK_POWERDOWN;
+       data->backlight->props.power = BACKLIGHT_POWER_OFF;
        picolcd_set_brightness(data->backlight);
        data->lcd_power = data->backlight->props.power = bl_power;
 }
This page took 0.058931 seconds and 4 git commands to generate.