forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-01-04 1543e317f1da31b75942316931e8f491a8920811
kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf117.c
....@@ -184,8 +184,15 @@
184184 }
185185 };
186186
187
+static const struct gf100_gr_fwif
188
+gf117_gr_fwif[] = {
189
+ { -1, gf100_gr_load, &gf117_gr },
190
+ { -1, gf100_gr_nofw, &gf117_gr },
191
+ {}
192
+};
193
+
187194 int
188195 gf117_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr)
189196 {
190
- return gf100_gr_new_(&gf117_gr, device, index, pgr);
197
+ return gf100_gr_new_(gf117_gr_fwif, device, index, pgr);
191198 }