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

Commit dffa6d4f authored by Markus Elfring's avatar Markus Elfring Committed by Alex Deucher
Browse files

drm/amdgpu: Delete a variable in amdgpu_cgs_acpi_eval_object()



The local variable "func_no" was assigned a value at two places.
But it was not read within this function. Thus delete it.

Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 1a8e5f28
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -921,7 +921,6 @@ static int amdgpu_cgs_acpi_eval_object(struct cgs_device *cgs_device,
	uint32_t i, count;
	acpi_status status;
	int result = 0;
	uint32_t func_no = 0xFFFFFFFF;

	handle = ACPI_HANDLE(&adev->pdev->dev);
	if (!handle)
@@ -938,7 +937,6 @@ static int amdgpu_cgs_acpi_eval_object(struct cgs_device *cgs_device,
		if (info->pinput_argument == NULL)
			return -EINVAL;
		argument = info->pinput_argument;
		func_no = argument->value;
		for (i = 0; i < info->input_count; i++) {
			if (((argument->type == ACPI_TYPE_STRING) ||
			     (argument->type == ACPI_TYPE_BUFFER)) &&