Re: [PATCH -next] drm/amd/display: make dcn32_mpc_funcs static

2022-10-20 Thread Alex Deucher
Applied. Thanks! Alex On Wed, Oct 19, 2022 at 9:28 AM Harry Wentland wrote: > > On 2022-10-19 02:23, ruanjinjie wrote: > > The symbol is not used outside of the file, so mark it static. > > > > Fixes the following warning: > > > >

Re: [PATCH -next] drm/amd/display: make dcn32_mpc_funcs static

2022-10-19 Thread Harry Wentland
On 2022-10-19 02:23, ruanjinjie wrote: > The symbol is not used outside of the file, so mark it static. > > Fixes the following warning: > > drivers/gpu/drm/amd/amdgpu/../display/dc/dcn32/dcn32_mpc.c:985:24: warning: > symbol 'dcn32_mpc_funcs' was not declared. Should it be static? > >

[PATCH -next] drm/amd/display: make dcn32_mpc_funcs static

2022-10-19 Thread ruanjinjie
The symbol is not used outside of the file, so mark it static. Fixes the following warning: drivers/gpu/drm/amd/amdgpu/../display/dc/dcn32/dcn32_mpc.c:985:24: warning: symbol 'dcn32_mpc_funcs' was not declared. Should it be static? Signed-off-by: ruanjinjie ---