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