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

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

drm/amdgpu: Change assignment for a variable in amdgpu_cgs_acpi_eval_object()



Indicate successful function execution only at the end.
Thus omit initialisation for the variable "result" at the beginning.

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 eb09d7a7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -920,7 +920,7 @@ static int amdgpu_cgs_acpi_eval_object(struct cgs_device *cgs_device,
	struct cgs_acpi_method_argument *argument;
	uint32_t i, count;
	acpi_status status;
	int result = 0;
	int result;

	handle = ACPI_HANDLE(&adev->pdev->dev);
	if (!handle)
@@ -1061,6 +1061,7 @@ static int amdgpu_cgs_acpi_eval_object(struct cgs_device *cgs_device,
		params++;
	}

	result = 0;
free_obj:
	kfree(obj);
free_input: