summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/nvgpu/gk20a/gk20a.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.c b/drivers/gpu/nvgpu/gk20a/gk20a.c
index 98dce955..5641818e 100644
--- a/drivers/gpu/nvgpu/gk20a/gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/gk20a.c
@@ -1599,8 +1599,8 @@ int gk20a_busy(struct platform_device *pdev)
1599#else 1599#else
1600 if (!g->power_on) { 1600 if (!g->power_on) {
1601 ret = platform->virtual_dev ? 1601 ret = platform->virtual_dev ?
1602 vgpu_pm_finalize_poweron(&dev->dev) 1602 vgpu_pm_finalize_poweron(&pdev->dev)
1603 : gk20a_pm_finalize_poweron(&dev->dev); 1603 : gk20a_pm_finalize_poweron(&pdev->dev);
1604 if (ret) 1604 if (ret)
1605 goto fail; 1605 goto fail;
1606 } 1606 }
@@ -1615,8 +1615,8 @@ fail:
1615 1615
1616void gk20a_idle(struct platform_device *pdev) 1616void gk20a_idle(struct platform_device *pdev)
1617{ 1617{
1618 struct gk20a_platform *platform = gk20a_get_platform(pdev);
1619#ifdef CONFIG_PM_RUNTIME 1618#ifdef CONFIG_PM_RUNTIME
1619 struct gk20a_platform *platform = gk20a_get_platform(pdev);
1620 if (atomic_read(&pdev->dev.power.usage_count) == 1) 1620 if (atomic_read(&pdev->dev.power.usage_count) == 1)
1621 gk20a_scale_notify_idle(pdev); 1621 gk20a_scale_notify_idle(pdev);
1622 pm_runtime_mark_last_busy(&pdev->dev); 1622 pm_runtime_mark_last_busy(&pdev->dev);