summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/os/linux/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/os/linux/module.c')
-rw-r--r--drivers/gpu/nvgpu/os/linux/module.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/os/linux/module.c b/drivers/gpu/nvgpu/os/linux/module.c
index dbc97f95..1fd7f544 100644
--- a/drivers/gpu/nvgpu/os/linux/module.c
+++ b/drivers/gpu/nvgpu/os/linux/module.c
@@ -683,6 +683,10 @@ void gk20a_remove_support(struct gk20a *g)
683 if (g->pmu.remove_support) 683 if (g->pmu.remove_support)
684 g->pmu.remove_support(&g->pmu); 684 g->pmu.remove_support(&g->pmu);
685 685
686 if (g->acr.remove_support != NULL) {
687 g->acr.remove_support(&g->acr);
688 }
689
686 if (g->gr.remove_support) 690 if (g->gr.remove_support)
687 g->gr.remove_support(&g->gr); 691 g->gr.remove_support(&g->gr);
688 692