drm/amd/pm: mark irq functions as 'static'
Two newly added functions cause a warning because they lack a prototype:
drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu13/smu_v13_0_6_ppt.c:1328:5: error: no previous prototype for 'smu_v13_0_6_set_irq_state' [-Werror=missing-prototypes]
drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu13/smu_v13_0_6_ppt.c:1368:5: error: no previous prototype for 'smu_v13_0_6_register_irq_handler' [-Werror=missing-prototypes]
They are only used locally, so just mark them static.
Fixes: 676915e410
("drm/amd/pm: Add ih for SMU v13.0.6 thermal throttling")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
6dabce860d
commit
87f4c2d920
|
@ -1325,7 +1325,7 @@ static int smu_v13_0_6_irq_process(struct amdgpu_device *adev,
|
|||
return 0;
|
||||
}
|
||||
|
||||
int smu_v13_0_6_set_irq_state(struct amdgpu_device *adev,
|
||||
static int smu_v13_0_6_set_irq_state(struct amdgpu_device *adev,
|
||||
struct amdgpu_irq_src *source,
|
||||
unsigned tyep,
|
||||
enum amdgpu_interrupt_state state)
|
||||
|
@ -1365,7 +1365,7 @@ static const struct amdgpu_irq_src_funcs smu_v13_0_6_irq_funcs =
|
|||
.process = smu_v13_0_6_irq_process,
|
||||
};
|
||||
|
||||
int smu_v13_0_6_register_irq_handler(struct smu_context *smu)
|
||||
static int smu_v13_0_6_register_irq_handler(struct smu_context *smu)
|
||||
{
|
||||
struct amdgpu_device *adev = smu->adev;
|
||||
struct amdgpu_irq_src *irq_src = &smu->irq_source;
|
||||
|
|
Loading…
Reference in New Issue