]> git.dujemihanovic.xyz Git - linux.git/commitdiff
drm/amdgpu/gfx9.4.3: drop extra wrapper
authorAlex Deucher <alexander.deucher@amd.com>
Tue, 10 Sep 2024 13:33:30 +0000 (09:33 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 18 Sep 2024 20:14:26 +0000 (16:14 -0400)
Drop wrapper used in one place.  gfx_v9_4_3_xcc_cp_enable()
is used in one place.  gfx_v9_4_3_xcc_cp_compute_enable()
is used everywhere else.

Reviewed-by: Lijo Lazar <lijo.lazar@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c

index 408e5600bb6179a0a2c3f1ca54a6460eb0c950d7..b940d2ad57dba6682507d957cb975d2c1905b950 100644 (file)
@@ -2299,12 +2299,6 @@ static int gfx_v9_4_3_cp_resume(struct amdgpu_device *adev)
        return 0;
 }
 
-static void gfx_v9_4_3_xcc_cp_enable(struct amdgpu_device *adev, bool enable,
-                                    int xcc_id)
-{
-       gfx_v9_4_3_xcc_cp_compute_enable(adev, enable, xcc_id);
-}
-
 static void gfx_v9_4_3_xcc_fini(struct amdgpu_device *adev, int xcc_id)
 {
        if (amdgpu_gfx_disable_kcq(adev, xcc_id))
@@ -2336,7 +2330,7 @@ static void gfx_v9_4_3_xcc_fini(struct amdgpu_device *adev, int xcc_id)
        }
 
        gfx_v9_4_3_xcc_kcq_fini_register(adev, xcc_id);
-       gfx_v9_4_3_xcc_cp_enable(adev, false, xcc_id);
+       gfx_v9_4_3_xcc_cp_compute_enable(adev, false, xcc_id);
 }
 
 static int gfx_v9_4_3_hw_init(void *handle)