Re: [Freedreno] [PATCH] drm/msm: change msm_sched_ops from global to static

2022-04-25 Thread Dmitry Baryshkov
On 21/04/2022 16:15, Tom Rix wrote: Smatch reports this issue msm_ringbuffer.c:43:36: warning: symbol 'msm_sched_ops' was not declared. Should it be static? msm_sched_ops is only used in msm_ringbuffer.c so change its storage-class specifier to static. Signed-off-by: Tom Rix Reviewed-by: Dm

[Freedreno] [PATCH] drm/msm: change msm_sched_ops from global to static

2022-04-21 Thread Tom Rix
Smatch reports this issue msm_ringbuffer.c:43:36: warning: symbol 'msm_sched_ops' was not declared. Should it be static? msm_sched_ops is only used in msm_ringbuffer.c so change its storage-class specifier to static. Signed-off-by: Tom Rix --- drivers/gpu/drm/msm/msm_ringbuffer.c | 2 +- 1 fil