OSDN Git Service

backlight: generic-bl: Remove DRIVER1 state
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 25 Apr 2018 17:42:49 +0000 (19:42 +0200)
committerLee Jones <lee.jones@linaro.org>
Mon, 30 Apr 2018 12:25:14 +0000 (13:25 +0100)
Nothing in the entire tree ever sets this, which means this is dead
code. Remove it.

Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Acked-by: Daniel Thompson <daniel.thompson@linaro.org>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/video/backlight/generic_bl.c

index 67dfb93..4dea91a 100644 (file)
@@ -21,9 +21,6 @@ static int genericbl_intensity;
 static struct backlight_device *generic_backlight_device;
 static struct generic_bl_info *bl_machinfo;
 
-/* Flag to signal when the battery is low */
-#define GENERICBL_BATTLOW       BL_CORE_DRIVER1
-
 static int genericbl_send_intensity(struct backlight_device *bd)
 {
        int intensity = bd->props.brightness;
@@ -34,8 +31,6 @@ static int genericbl_send_intensity(struct backlight_device *bd)
                intensity = 0;
        if (bd->props.state & BL_CORE_SUSPENDED)
                intensity = 0;
-       if (bd->props.state & GENERICBL_BATTLOW)
-               intensity &= bl_machinfo->limit_mask;
 
        bl_machinfo->set_bl_intensity(intensity);