Commit c6ed9f66 authored by Tom Rix's avatar Tom Rix Committed by Lyude Paul
Browse files

drm/nouveau/gr/gf100-: change gf108_gr_fwif from global to static



Smatch reports this issue
gf108.c:147:1: warning: symbol 'gf108_gr_fwif'
  was not declared. Should it be static?

gf108_gr_fwif is only used in gf108.c.  Single
file variables should not be global so change
gf108_gr_fwif's storage-class specifier to static.

Signed-off-by: default avatarTom Rix <trix@redhat.com>
Reviewed-by: default avatarLyude Paul <lyude@redhat.com>
Signed-off-by: default avatarLyude Paul <lyude@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220418152810.3280502-1-trix@redhat.com
parent f6e0a6b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ gf108_gr = {
	}
};

const struct gf100_gr_fwif
static const struct gf100_gr_fwif
gf108_gr_fwif[] = {
	{ -1, gf100_gr_load, &gf108_gr },
	{ -1, gf100_gr_nofw, &gf108_gr },