diff options
author | Sunil Khatri <sunil.khatri@amd.com> | 2024-09-30 15:00:30 +0530 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-10-01 17:45:44 -0400 |
commit | 0ef2a1e7aff53967958c2b87eecfac61cd9ed213 (patch) | |
tree | 91c59802d97c062987b91db79c81ab1463fc489b /drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c | |
parent | e47cb9d2533200d49dd5364d4a148119492f8a3d (diff) | |
download | linux-0ef2a1e7aff53967958c2b87eecfac61cd9ed213.tar.gz linux-0ef2a1e7aff53967958c2b87eecfac61cd9ed213.tar.bz2 linux-0ef2a1e7aff53967958c2b87eecfac61cd9ed213.zip |
drm/amdgpu: update the handle ptr in soft_reset
Update the *handle to amdgpu_ip_block ptr for all
functions pointers of soft_reset.
Signed-off-by: Sunil Khatri <sunil.khatri@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c b/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c index de9e6222d495..853af18fcc43 100644 --- a/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c +++ b/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c @@ -678,9 +678,9 @@ static int uvd_v4_2_wait_for_idle(void *handle) return -ETIMEDOUT; } -static int uvd_v4_2_soft_reset(void *handle) +static int uvd_v4_2_soft_reset(struct amdgpu_ip_block *ip_block) { - struct amdgpu_device *adev = (struct amdgpu_device *)handle; + struct amdgpu_device *adev = ip_block->adev; uvd_v4_2_stop(adev); |