diff options
author | Sunil Khatri <sunil.khatri@amd.com> | 2024-09-25 16:59:51 +0530 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-10-01 17:40:22 -0400 |
commit | 146b085eadd2ce405e67492a80d6e767748d5642 (patch) | |
tree | 202f558059da1bf4689b73259a404883fcc6c56d /drivers/gpu/drm/amd/amdgpu/jpeg_v1_0.h | |
parent | 10072642541bd51e5df99d0233b910915f9bd82c (diff) | |
download | linux-146b085eadd2ce405e67492a80d6e767748d5642.tar.gz linux-146b085eadd2ce405e67492a80d6e767748d5642.tar.bz2 linux-146b085eadd2ce405e67492a80d6e767748d5642.zip |
drm/amdgpu: update the handle ptr in early_init
update the handle ptr to amdgpu_ip_block ptr
for all functions pointers on early_init.
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/jpeg_v1_0.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/jpeg_v1_0.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/jpeg_v1_0.h b/drivers/gpu/drm/amd/amdgpu/jpeg_v1_0.h index 9654d22e0376..791de235cd8b 100644 --- a/drivers/gpu/drm/amd/amdgpu/jpeg_v1_0.h +++ b/drivers/gpu/drm/amd/amdgpu/jpeg_v1_0.h @@ -24,7 +24,7 @@ #ifndef __JPEG_V1_0_H__ #define __JPEG_V1_0_H__ -int jpeg_v1_0_early_init(void *handle); +int jpeg_v1_0_early_init(struct amdgpu_ip_block *ip_block); int jpeg_v1_0_sw_init(void *handle); void jpeg_v1_0_sw_fini(void *handle); void jpeg_v1_0_start(struct amdgpu_device *adev, int mode); |