summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/vgpu')
-rw-r--r--drivers/gpu/nvgpu/vgpu/gr_vgpu.c2
-rw-r--r--drivers/gpu/nvgpu/vgpu/ltc_vgpu.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/gr_vgpu.c b/drivers/gpu/nvgpu/vgpu/gr_vgpu.c
index 96d21c0a..b913847b 100644
--- a/drivers/gpu/nvgpu/vgpu/gr_vgpu.c
+++ b/drivers/gpu/nvgpu/vgpu/gr_vgpu.c
@@ -844,7 +844,7 @@ static void vgpu_remove_gr_support(struct gr_gk20a *gr)
844{ 844{
845 gk20a_dbg_fn(""); 845 gk20a_dbg_fn("");
846 846
847 gk20a_comptag_allocator_destroy(&gr->comp_tags); 847 gk20a_comptag_allocator_destroy(gr->g, &gr->comp_tags);
848 848
849 nvgpu_kfree(gr->g, gr->sm_error_states); 849 nvgpu_kfree(gr->g, gr->sm_error_states);
850 gr->sm_error_states = NULL; 850 gr->sm_error_states = NULL;
diff --git a/drivers/gpu/nvgpu/vgpu/ltc_vgpu.c b/drivers/gpu/nvgpu/vgpu/ltc_vgpu.c
index a6848872..fb9558e2 100644
--- a/drivers/gpu/nvgpu/vgpu/ltc_vgpu.c
+++ b/drivers/gpu/nvgpu/vgpu/ltc_vgpu.c
@@ -50,7 +50,7 @@ int vgpu_ltc_init_comptags(struct gk20a *g, struct gr_gk20a *gr)
50 if (max_comptag_lines < 2) 50 if (max_comptag_lines < 2)
51 return -ENXIO; 51 return -ENXIO;
52 52
53 err = gk20a_comptag_allocator_init(&gr->comp_tags, max_comptag_lines); 53 err = gk20a_comptag_allocator_init(g, &gr->comp_tags, max_comptag_lines);
54 if (err) 54 if (err)
55 return err; 55 return err;
56 56