From 192cf8c1f8d1005ab08619c9152d514dec3a34ef Mon Sep 17 00:00:00 2001 From: Terje Bergstrom Date: Fri, 4 Aug 2017 09:49:48 -0700 Subject: gpu: nvgpu: Pass struct gk20a to gk20a_wait_for_idle() Pass struct gk20a pointer instead of struct device to gk20a_wait_for_idle(). The code is not Linux specific and does not need pointer to struct device. Change-Id: I2cafd6c7db019c9de76b6e68a1ae73f0b4cea37d Signed-off-by: Terje Bergstrom Reviewed-on: https://git-master.nvidia.com/r/1533173 GVS: Gerrit_Virtual_Submit Reviewed-by: Alex Waterman --- drivers/gpu/nvgpu/common/linux/module.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers/gpu/nvgpu/common/linux/module.c') 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) /* Prevent more requests by disabling Runtime PM */ __pm_runtime_disable(&pdev->dev, false); - err = gk20a_wait_for_idle(&pdev->dev); + err = gk20a_wait_for_idle(g); if (err) { nvgpu_err(g, "failed to idle GPU, err=%d", err); goto finish; @@ -844,7 +844,7 @@ void gk20a_driver_start_unload(struct gk20a *g) if (g->is_virtual) return; - gk20a_wait_for_idle(dev_from_gk20a(g)); + gk20a_wait_for_idle(g); nvgpu_wait_for_deferred_interrupts(g); gk20a_channel_cancel_pending_sema_waits(g); -- cgit v1.2.2