mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-13 21:02:35 +00:00
fujitsu-laptop: use FB_BLANK_* constants
Replace the magic numbers in fujitsu-laptop.c by the appropriate FB_BLANK constants, as indicated by the comment for backlight_properties.power in include/linux/backlight.h. Signed-off-by: Michael Karcher <kernel@mkarcher.dialup.fu-berlin.de> Acked-by: Jonathan Woithe <jwoithe@just42.net> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
This commit is contained in:
parent
4690555e13
commit
e8549e2cf3
@ -64,6 +64,7 @@
|
|||||||
#include <linux/acpi.h>
|
#include <linux/acpi.h>
|
||||||
#include <linux/dmi.h>
|
#include <linux/dmi.h>
|
||||||
#include <linux/backlight.h>
|
#include <linux/backlight.h>
|
||||||
|
#include <linux/fb.h>
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
#include <linux/kfifo.h>
|
#include <linux/kfifo.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
@ -398,7 +399,7 @@ static int bl_get_brightness(struct backlight_device *b)
|
|||||||
static int bl_update_status(struct backlight_device *b)
|
static int bl_update_status(struct backlight_device *b)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
if (b->props.power == 4)
|
if (b->props.power == FB_BLANK_POWERDOWN)
|
||||||
ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x3);
|
ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x3);
|
||||||
else
|
else
|
||||||
ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x0);
|
ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x0);
|
||||||
@ -1139,9 +1140,9 @@ static int __init fujitsu_init(void)
|
|||||||
|
|
||||||
if (!acpi_video_backlight_support()) {
|
if (!acpi_video_backlight_support()) {
|
||||||
if (call_fext_func(FUNC_BACKLIGHT, 0x2, 0x4, 0x0) == 3)
|
if (call_fext_func(FUNC_BACKLIGHT, 0x2, 0x4, 0x0) == 3)
|
||||||
fujitsu->bl_device->props.power = 4;
|
fujitsu->bl_device->props.power = FB_BLANK_POWERDOWN;
|
||||||
else
|
else
|
||||||
fujitsu->bl_device->props.power = 0;
|
fujitsu->bl_device->props.power = FB_BLANK_UNBLANK;
|
||||||
}
|
}
|
||||||
|
|
||||||
pr_info("driver " FUJITSU_DRIVER_VERSION " successfully loaded\n");
|
pr_info("driver " FUJITSU_DRIVER_VERSION " successfully loaded\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user