diff options
author | 2024-09-30 17:42:01 +0530 | |
---|---|---|
committer | 2024-10-07 14:02:50 -0400 | |
commit | 7feb4f3ad8befa0850a576adaa32d57962bf82e5 (patch) | |
tree | 6285622982e095990c8d62c512ee88caa4a37532 /drivers/gpu/drm/amd/amdgpu/si.c | |
parent | drm/amdgpu: update the handle ptr in suspend (diff) | |
download | wireguard-linux-7feb4f3ad8befa0850a576adaa32d57962bf82e5.tar.xz wireguard-linux-7feb4f3ad8befa0850a576adaa32d57962bf82e5.zip |
drm/amdgpu: update the handle ptr in resume
Update the *handle to amdgpu_ip_block ptr for all
functions pointers of resume.
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/si.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/si.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/si.c b/drivers/gpu/drm/amd/amdgpu/si.c index b251a93baffe..0fc303843493 100644 --- a/drivers/gpu/drm/amd/amdgpu/si.c +++ b/drivers/gpu/drm/amd/amdgpu/si.c @@ -2657,9 +2657,9 @@ static int si_common_suspend(struct amdgpu_ip_block *ip_block) return si_common_hw_fini(adev); } -static int si_common_resume(void *handle) +static int si_common_resume(struct amdgpu_ip_block *ip_block) { - struct amdgpu_device *adev = (struct amdgpu_device *)handle; + struct amdgpu_device *adev = ip_block->adev; return si_common_hw_init(adev); } |