Commit 2b9f7848 authored by Nirmoy Das's avatar Nirmoy Das Committed by Alex Deucher
Browse files

drm/amdgpu: minor cleanup of phase1 suspend code



Cleanup of phase1 suspend code to reduce unnecessary indentation.

Signed-off-by: default avatarNirmoy Das <nirmoy.das@amd.com>
Acked-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent d8d3493a
Loading
Loading
Loading
Loading
+13 −10
Original line number Diff line number Diff line
@@ -2456,8 +2456,11 @@ static int amdgpu_device_ip_suspend_phase1(struct amdgpu_device *adev)
	for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
		if (!adev->ip_blocks[i].status.valid)
			continue;

		/* displays are handled separately */
		if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) {
		if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_DCE)
			continue;

		/* XXX handle errors */
		r = adev->ip_blocks[i].version->funcs->suspend(adev);
		/* XXX handle errors */
@@ -2466,9 +2469,9 @@ static int amdgpu_device_ip_suspend_phase1(struct amdgpu_device *adev)
				  adev->ip_blocks[i].version->funcs->name, r);
			return r;
		}

		adev->ip_blocks[i].status.hw = false;
	}
	}

	return 0;
}