hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf119.c
....@@ -210,8 +210,15 @@
210210 }
211211 };
212212
213
+static const struct gf100_gr_fwif
214
+gf119_gr_fwif[] = {
215
+ { -1, gf100_gr_load, &gf119_gr },
216
+ { -1, gf100_gr_nofw, &gf119_gr },
217
+ {}
218
+};
219
+
213220 int
214221 gf119_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr)
215222 {
216
- return gf100_gr_new_(&gf119_gr, device, index, pgr);
223
+ return gf100_gr_new_(gf119_gr_fwif, device, index, pgr);
217224 }