]> git.baikalelectronics.ru Git - kernel.git/commit
drm/amd/pm: fix compile warning about missing prototype for function
authorEvan Quan <evan.quan@amd.com>
Wed, 28 Oct 2020 02:20:30 +0000 (10:20 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 30 Oct 2020 18:26:46 +0000 (14:26 -0400)
commit74933a55f0b07ef19120a46c62ef0c1a1288792c
tree8d59111e4e68da6a54c350ae966b1afbfccd437f
parentee0118584bea51655881f367d5cb3ac6744f46a4
drm/amd/pm: fix compile warning about missing prototype for function

Fix the warning below:
>> drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/ppatomctrl.c:1234:29: warning: no previous prototype for function 'asic_internal_ss_get_ss_table' [-Wmissing-prototypes]
   ATOM_ASIC_INTERNAL_SS_INFO *asic_internal_ss_get_ss_table(void *device)
                               ^
   drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/ppatomctrl.c:1234:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   ATOM_ASIC_INTERNAL_SS_INFO *asic_internal_ss_get_ss_table(void *device)
   ^
   static
   1 warning generated.

Signed-off-by: Evan Quan <evan.quan@amd.com>
Reported-by: kernel test robot <lkp@intel.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/powerplay/hwmgr/ppatomctrl.c