Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 540b8bb9 authored by Thomas Renninger's avatar Thomas Renninger Committed by Len Brown
Browse files

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

parent a598c82f
Loading
Loading
Loading
Loading
+5 −1
Original line number Original line Diff line number Diff line
@@ -1038,7 +1038,11 @@ static int sony_nc_add(struct acpi_device *device)
		goto outinput;
		goto outinput;
	}
	}


	if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT", &handle))) {
	if (!acpi_video_backlight_support()) {
		printk(KERN_INFO DRV_PFX "Sony: Brightness ignored, must be "
		       "controlled by ACPI video driver\n");
	} else if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT",
						&handle))) {
		sony_backlight_device = backlight_device_register("sony", NULL,
		sony_backlight_device = backlight_device_register("sony", NULL,
								  NULL,
								  NULL,
								  &sony_backlight_ops);
								  &sony_backlight_ops);