hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf104.c
....@@ -144,8 +144,15 @@
144144 }
145145 };
146146
147
+static const struct gf100_gr_fwif
148
+gf104_gr_fwif[] = {
149
+ { -1, gf100_gr_load, &gf104_gr },
150
+ { -1, gf100_gr_nofw, &gf104_gr },
151
+ {}
152
+};
153
+
147154 int
148155 gf104_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr)
149156 {
150
- return gf100_gr_new_(&gf104_gr, device, index, pgr);
157
+ return gf100_gr_new_(gf104_gr_fwif, device, index, pgr);
151158 }