kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/gm107.c
.. .. @@ -429,8 +429,15 @@ 429 429 } 430 430 }; 431 431 432 +static const struct gf100_gr_fwif433 +gm107_gr_fwif[] = {434 + { -1, gf100_gr_load, &gm107_gr },435 + { -1, gf100_gr_nofw, &gm107_gr },436 + {}437 +};438 +432 439 int 433 440 gm107_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr) 434 441 { 435 - return gf100_gr_new_(&gm107_gr, device, index, pgr);442 + return gf100_gr_new_(gm107_gr_fwif, device, index, pgr);436 443 }