]> git.baikalelectronics.ru Git - kernel.git/commit
drm/amdgpu: declare static function to fix compiler warning
authorGuchun Chen <guchun.chen@amd.com>
Fri, 26 Nov 2021 05:14:41 +0000 (13:14 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 1 Dec 2021 21:03:56 +0000 (16:03 -0500)
commit88b9aa24267438aa69e7d84fded43780748995ae
treee43b9c244a8a8b33795a7f2601e1b2db54c787b3
parentc38ce9578406866f4c6b304aa4da2dff43339ec5
drm/amdgpu: declare static function to fix compiler warning

>> drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c:503:6: warning: no previous prototype for function 'release_psp_cmd_buf' [-Wmissing-prototypes]
   void release_psp_cmd_buf(struct psp_context *psp)
        ^
   drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c:503:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   void release_psp_cmd_buf(struct psp_context *psp)
   ^
   static
   1 warning generated.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Guchun Chen <guchun.chen@amd.com>
Reviewed-by: Kevin Wang <kevinyang.wang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c