Skip to content

Commit 421dabc

Browse files
arndbkarolherbst
authored andcommitted
drm/nouveau: remove unused tu102_gr_load() function
tu102_gr_load() is completely unused and can be removed to address this warning: drivers/gpu/drm/nouveau/dispnv50/disp.c:2517:1: error: no previous prototype for 'nv50_display_create' Another patch was sent in the meantime to mark the function static but that would just cause a different warning about an unused function. Fixes: 1cd97b5 ("drm/nouveau/gr/tu102-: use sw_veid_bundle_init from firmware") Link: https://lore.kernel.org/all/CACO55tuaNOYphHyB9+ygi9AnXVuF49etsW7x2X5K5iEtFNAAyw@mail.gmail.com/ Link: https://lore.kernel.org/all/20230417210310.2443152-1-arnd@kernel.org/ Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Karol Herbst <kherbst@redhat.com> Signed-off-by: Karol Herbst <kherbst@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230803143358.13563-1-arnd@kernel.org
1 parent e4060da commit 421dabc

File tree

1 file changed

+0
-13
lines changed
  • drivers/gpu/drm/nouveau/nvkm/engine/gr

1 file changed

+0
-13
lines changed

drivers/gpu/drm/nouveau/nvkm/engine/gr/tu102.c

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -206,19 +206,6 @@ tu102_gr_av_to_init_veid(struct nvkm_blob *blob, struct gf100_gr_pack **ppack)
206206
return gk20a_gr_av_to_init_(blob, 64, 0x00100000, ppack);
207207
}
208208

209-
int
210-
tu102_gr_load(struct gf100_gr *gr, int ver, const struct gf100_gr_fwif *fwif)
211-
{
212-
int ret;
213-
214-
ret = gm200_gr_load(gr, ver, fwif);
215-
if (ret)
216-
return ret;
217-
218-
return gk20a_gr_load_net(gr, "gr/", "sw_veid_bundle_init", ver, tu102_gr_av_to_init_veid,
219-
&gr->bundle_veid);
220-
}
221-
222209
static const struct gf100_gr_fwif
223210
tu102_gr_fwif[] = {
224211
{ 0, gm200_gr_load, &tu102_gr, &gp108_gr_fecs_acr, &gp108_gr_gpccs_acr },

0 commit comments

Comments
 (0)