summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/module.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/module.c b/drivers/gpu/nvgpu/common/linux/module.c
index cbfe6ad7..bfbe7a58 100644
--- a/drivers/gpu/nvgpu/common/linux/module.c
+++ b/drivers/gpu/nvgpu/common/linux/module.c
@@ -659,7 +659,7 @@ static void gk20a_pm_shutdown(struct platform_device *pdev)
659 /* Prevent more requests by disabling Runtime PM */ 659 /* Prevent more requests by disabling Runtime PM */
660 __pm_runtime_disable(&pdev->dev, false); 660 __pm_runtime_disable(&pdev->dev, false);
661 661
662 err = gk20a_wait_for_idle(&pdev->dev); 662 err = gk20a_wait_for_idle(g);
663 if (err) { 663 if (err) {
664 nvgpu_err(g, "failed to idle GPU, err=%d", err); 664 nvgpu_err(g, "failed to idle GPU, err=%d", err);
665 goto finish; 665 goto finish;
@@ -844,7 +844,7 @@ void gk20a_driver_start_unload(struct gk20a *g)
844 if (g->is_virtual) 844 if (g->is_virtual)
845 return; 845 return;
846 846
847 gk20a_wait_for_idle(dev_from_gk20a(g)); 847 gk20a_wait_for_idle(g);
848 848
849 nvgpu_wait_for_deferred_interrupts(g); 849 nvgpu_wait_for_deferred_interrupts(g);
850 gk20a_channel_cancel_pending_sema_waits(g); 850 gk20a_channel_cancel_pending_sema_waits(g);