diff options
author | Thomas Zimmermann <tzimmermann@suse.de> | 2024-07-31 14:50:51 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2024-08-12 16:26:32 +0200 |
commit | 754d389cdde9215f751ed4f35f1b1e5b765563cd (patch) | |
tree | 4f06388405a3be30486b682d47ddbc6b842a163f | |
parent | 045a513040cc0242d364c05c3791594e2294f32d (diff) | |
download | linux-754d389cdde9215f751ed4f35f1b1e5b765563cd.tar.gz linux-754d389cdde9215f751ed4f35f1b1e5b765563cd.tar.bz2 linux-754d389cdde9215f751ed4f35f1b1e5b765563cd.zip |
platform/x86: acer-wmi: Use backlight power constants
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 <tzimmermann@suse.de>
Cc: "Lee, Chun-Yi" <jlee@suse.com>
Cc: Hans de Goede <hdegoede@redhat.com>
Cc: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
Link: https://lore.kernel.org/r/20240731125220.1147348-2-tzimmermann@suse.de
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r-- | drivers/platform/x86/acer-wmi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c index 38c932df6446..349169d050c5 100644 --- a/drivers/platform/x86/acer-wmi.c +++ b/drivers/platform/x86/acer-wmi.c @@ -16,7 +16,6 @@ #include <linux/init.h> #include <linux/types.h> #include <linux/dmi.h> -#include <linux/fb.h> #include <linux/backlight.h> #include <linux/leds.h> #include <linux/platform_device.h> @@ -1685,7 +1684,7 @@ static int acer_backlight_init(struct device *dev) acer_backlight_device = bd; - bd->props.power = FB_BLANK_UNBLANK; + bd->props.power = BACKLIGHT_POWER_ON; bd->props.brightness = read_brightness(bd); backlight_update_status(bd); return 0; |