kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf119.c
.. .. @@ -210,8 +210,15 @@ 210 210 } 211 211 }; 212 212 213 +static const struct gf100_gr_fwif214 +gf119_gr_fwif[] = {215 + { -1, gf100_gr_load, &gf119_gr },216 + { -1, gf100_gr_nofw, &gf119_gr },217 + {}218 +};219 +213 220 int 214 221 gf119_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr) 215 222 { 216 - return gf100_gr_new_(&gf119_gr, device, index, pgr);223 + return gf100_gr_new_(gf119_gr_fwif, device, index, pgr);217 224 }