aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/video.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
index 05dff631591c..3b063a6ac52e 100644
--- a/drivers/acpi/video.c
+++ b/drivers/acpi/video.c
@@ -1979,6 +1979,10 @@ acpi_video_switch_brightness(struct acpi_video_device *device, int event)
1979 unsigned long long level_current, level_next; 1979 unsigned long long level_current, level_next;
1980 int result = -EINVAL; 1980 int result = -EINVAL;
1981 1981
1982 /* no warning message if acpi_backlight=vendor is used */
1983 if (!acpi_video_backlight_support())
1984 return 0;
1985
1982 if (!device->brightness) 1986 if (!device->brightness)
1983 goto out; 1987 goto out;
1984 1988