提交 38cfc148 编写于 作者: A Alessandro Guido 提交者: Len Brown

sony-laptop: brightness regression fix

After commit 540b8bb9:

  sony-laptop: fingers off backlight if video.ko is serving this functionality

I can't set brightness on my sony laptop (nothing in /sys/class/backlight).
dmesg says "sony-laptop: Sony: Brightness ignored, must be controlled by ACPI
video driver".

The function acpi_video_backlight_support returns 0 if we should use the
vendor-specific backlight support, while non-0 if the ACPI generic should
be used. Because of this, the check introduced by the said commit appears
reversed.
Signed-off-by: NAlessandro Guido <ag@alessandroguido.name>
Signed-off-by: NLen Brown <len.brown@intel.com>
上级 3bdca1b8
...@@ -1038,7 +1038,7 @@ static int sony_nc_add(struct acpi_device *device) ...@@ -1038,7 +1038,7 @@ static int sony_nc_add(struct acpi_device *device)
goto outinput; goto outinput;
} }
if (!acpi_video_backlight_support()) { if (acpi_video_backlight_support()) {
printk(KERN_INFO DRV_PFX "Sony: Brightness ignored, must be " printk(KERN_INFO DRV_PFX "Sony: Brightness ignored, must be "
"controlled by ACPI video driver\n"); "controlled by ACPI video driver\n");
} else if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT", } else if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册