drm/amd: Make amd_ip_funcs static for SDMA v5.0
authorTobias Jakobi <tjakobi@math.uni-bielefeld.de>
Sun, 4 Aug 2024 13:56:27 +0000 (15:56 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 13 Aug 2024 14:26:53 +0000 (10:26 -0400)
The struct can be static, as it is only used in this
translation unit.

Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/sdma_v5_0.c
drivers/gpu/drm/amd/amdgpu/sdma_v5_0.h

index d5f0dc1..3e48ea3 100644 (file)
@@ -1820,7 +1820,7 @@ static void sdma_v5_0_dump_ip_state(void *handle)
        amdgpu_gfx_off_ctrl(adev, true);
 }
 
-const struct amd_ip_funcs sdma_v5_0_ip_funcs = {
+static const struct amd_ip_funcs sdma_v5_0_ip_funcs = {
        .name = "sdma_v5_0",
        .early_init = sdma_v5_0_early_init,
        .late_init = NULL,
index d4e3c2e..2ab71f2 100644 (file)
@@ -24,7 +24,6 @@
 #ifndef __SDMA_V5_0_H__
 #define __SDMA_V5_0_H__
 
-extern const struct amd_ip_funcs sdma_v5_0_ip_funcs;
 extern const struct amdgpu_ip_block_version sdma_v5_0_ip_block;
 
 #endif /* __SDMA_V5_0_H__ */