Re: [PATCH] drm/amdgpu: make gfx_v11_0_rlc_stop static

2022-05-31 Thread Alex Deucher
Applied. Thanks! Alex On Sun, May 29, 2022 at 7:50 AM sunliming wrote: > > This symbol is not used outside of gfx_v11_0.c, so marks it static. > > Fixes the following w1 warning: > > drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c:1945:6: warning: no previous > prototype for function 'gfx_v11_0_rlc_stop

[PATCH] drm/amdgpu: make gfx_v11_0_rlc_stop static

2022-05-29 Thread sunliming
This symbol is not used outside of gfx_v11_0.c, so marks it static. Fixes the following w1 warning: drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c:1945:6: warning: no previous prototype for function 'gfx_v11_0_rlc_stop' [-Wmissing-prototypes]. Reported-by: kernel test robot Signed-off-by: sunliming --