kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf117.c
.. .. @@ -184,8 +184,15 @@ 184 184 } 185 185 }; 186 186 187 +static const struct gf100_gr_fwif188 +gf117_gr_fwif[] = {189 + { -1, gf100_gr_load, &gf117_gr },190 + { -1, gf100_gr_nofw, &gf117_gr },191 + {}192 +};193 +187 194 int 188 195 gf117_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr) 189 196 { 190 - return gf100_gr_new_(&gf117_gr, device, index, pgr);197 + return gf100_gr_new_(gf117_gr_fwif, device, index, pgr);191 198 }