kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf104.c
.. .. @@ -144,8 +144,15 @@ 144 144 } 145 145 }; 146 146 147 +static const struct gf100_gr_fwif148 +gf104_gr_fwif[] = {149 + { -1, gf100_gr_load, &gf104_gr },150 + { -1, gf100_gr_nofw, &gf104_gr },151 + {}152 +};153 +147 154 int 148 155 gf104_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr) 149 156 { 150 - return gf100_gr_new_(&gf104_gr, device, index, pgr);157 + return gf100_gr_new_(gf104_gr_fwif, device, index, pgr);151 158 }