summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu/vgpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/vgpu/vgpu.c')
-rw-r--r--drivers/gpu/nvgpu/vgpu/vgpu.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/vgpu.c b/drivers/gpu/nvgpu/vgpu/vgpu.c
index bcd352e7..9ad0468e 100644
--- a/drivers/gpu/nvgpu/vgpu/vgpu.c
+++ b/drivers/gpu/nvgpu/vgpu/vgpu.c
@@ -217,6 +217,10 @@ void vgpu_remove_support_common(struct gk20a *g)
217 if (g->pmu.remove_support) 217 if (g->pmu.remove_support)
218 g->pmu.remove_support(&g->pmu); 218 g->pmu.remove_support(&g->pmu);
219 219
220 if (g->acr.remove_support != NULL) {
221 g->acr.remove_support(&g->acr);
222 }
223
220 if (g->gr.remove_support) 224 if (g->gr.remove_support)
221 g->gr.remove_support(&g->gr); 225 g->gr.remove_support(&g->gr);
222 226