summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c
diff options
context:
space:
mode:
authorSunil Khatri <sunil.khatri@amd.com>2024-10-09 17:52:41 +0530
committerAlex Deucher <alexander.deucher@amd.com>2024-10-22 17:50:37 -0400
commit5ebdb6fd60e5a1bc1abe3d74ebd2862e27ab82c4 (patch)
tree39683af27a3b31aaac483bc9a1b4e31d35a53647 /drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c
parent86b5be6ea20a9c8f4b23bf4377be48e5d7facfcb (diff)
downloadlinux-stable-5ebdb6fd60e5a1bc1abe3d74ebd2862e27ab82c4.tar.gz
linux-stable-5ebdb6fd60e5a1bc1abe3d74ebd2862e27ab82c4.tar.bz2
linux-stable-5ebdb6fd60e5a1bc1abe3d74ebd2862e27ab82c4.zip
drm/amdgpu: clean the dummy sw_fini functions
Remove the dummy sw_fini functions for all ip blocks. 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.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c
index c75bc32ca7ef..9b98b40ac4db 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_isp.c
@@ -33,11 +33,6 @@
#include "isp_v4_1_0.h"
#include "isp_v4_1_1.h"
-static int isp_sw_fini(struct amdgpu_ip_block *ip_block)
-{
- return 0;
-}
-
/**
* isp_hw_init - start and test isp block
*
@@ -169,7 +164,6 @@ static const struct amd_ip_funcs isp_ip_funcs = {
.name = "isp_ip",
.early_init = isp_early_init,
.late_init = NULL,
- .sw_fini = isp_sw_fini,
.hw_init = isp_hw_init,
.hw_fini = isp_hw_fini,
.suspend = isp_suspend,