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/amdgpu_isp.c | |
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/amdgpu_isp.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c index 4766e99dd98f..7c1f17dc6b4b 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c @@ -122,9 +122,10 @@ static int isp_load_fw_by_psp(struct amdgpu_device *adev) return r; } -static int isp_early_init(void *handle) +static int isp_early_init(struct amdgpu_ip_block *ip_block) { - struct amdgpu_device *adev = (struct amdgpu_device *)handle; + + struct amdgpu_device *adev = ip_block->adev; struct amdgpu_isp *isp = &adev->isp; switch (amdgpu_ip_version(adev, ISP_HWIP, 0)) { |