Re: [PATCH] drm/nouveau/gsp: change gv100_gsp from global to static

2022-04-22 Thread Lyude Paul
Reviewed-by: Lyude Paul Will push upstream in a moment On Thu, 2022-04-21 at 09:30 -0400, Tom Rix wrote: > Smatch reports this issue > gv100.c:46:1: warning: symbol 'gv100_gsp' was not declared. Should it be > static? > > gv100_gsp is only used in gv100.c so change its > storage-class specifier

[PATCH] drm/nouveau/gsp: change gv100_gsp from global to static

2022-04-21 Thread Tom Rix
Smatch reports this issue gv100.c:46:1: warning: symbol 'gv100_gsp' was not declared. Should it be static? gv100_gsp is only used in gv100.c so change its storage-class specifier to static. Signed-off-by: Tom Rix --- drivers/gpu/drm/nouveau/nvkm/subdev/gsp/gv100.c | 2 +- 1 file changed, 1 inse