kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf110.c
.. .. @@ -119,8 +119,15 @@ 119 119 } 120 120 }; 121 121 122 +static const struct gf100_gr_fwif123 +gf110_gr_fwif[] = {124 + { -1, gf100_gr_load, &gf110_gr },125 + { -1, gf100_gr_nofw, &gf110_gr },126 + {}127 +};128 +122 129 int 123 130 gf110_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr) 124 131 { 125 - return gf100_gr_new_(&gf110_gr, device, index, pgr);132 + return gf100_gr_new_(gf110_gr_fwif, device, index, pgr);126 133 }