diff options
| author | 2024-09-26 20:47:32 +0530 | |
|---|---|---|
| committer | 2024-10-01 17:40:43 -0400 | |
| commit | 36aa9ab9c0c4a41fe334ab39951773f21709f89d (patch) | |
| tree | 72a9b3e87e9b28b53c0e535fad155acd2138eac3 /drivers/gpu/drm/amd/amdgpu/cik.c | |
| parent | drm/amdgpu: update the handle ptr in sw_init (diff) | |
| download | wireguard-linux-36aa9ab9c0c4a41fe334ab39951773f21709f89d.tar.xz wireguard-linux-36aa9ab9c0c4a41fe334ab39951773f21709f89d.zip | |
drm/amdgpu: update the handle ptr in sw_fini
update the *handle to amdgpu_ip_block ptr for all
functions pointers of sw_fini.
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/cik.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/cik.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/cik.c b/drivers/gpu/drm/amd/amdgpu/cik.c index 7753932de1a3..8e8e266b44ce 100644 --- a/drivers/gpu/drm/amd/amdgpu/cik.c +++ b/drivers/gpu/drm/amd/amdgpu/cik.c @@ -2129,7 +2129,7 @@ static int cik_common_sw_init(struct amdgpu_ip_block *ip_block) return 0; } -static int cik_common_sw_fini(void *handle) +static int cik_common_sw_fini(struct amdgpu_ip_block *ip_block) { return 0; } |
