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

Commit 824b558b authored by Luming Yu's avatar Luming Yu Committed by Len Brown
Browse files

[ACPI] acpi_video_device_write_state() now works

parent 9a31477a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -297,11 +297,12 @@ acpi_video_device_set_state(struct acpi_video_device *device, int state)
	int status;
	union acpi_object arg0 = { ACPI_TYPE_INTEGER };
	struct acpi_object_list args = { 1, &arg0 };
	unsigned long ret;

	ACPI_FUNCTION_TRACE("acpi_video_device_set_state");

	arg0.integer.value = state;
	status = acpi_evaluate_integer(device->handle, "_DSS", &args, NULL);
	status = acpi_evaluate_integer(device->handle, "_DSS", &args, &ret);

	return_VALUE(status);
}