summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/pci.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-06-21 18:56:05 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-06-30 21:34:59 -0400
commitbab823973b0630e2f4515d5aabbe4fb46cdf3195 (patch)
tree9e19ed71ed9a57b15a3f3b48ffbbbc1b196bf4d6 /drivers/gpu/nvgpu/common/linux/pci.c
parent6f0fcbc667ca55ed25818467069853e6d750cd7d (diff)
gpu: nvgpu: Use accessor for finding struct device
Use dev_from_gk20a() accessor whenever accessing struct device * from struct gk20a. JIRA NVGPU-38 Change-Id: Ide9fca3a56436c8f62e7872580a766c4c1e2353e Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master/r/1507930 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/pci.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/pci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/pci.c b/drivers/gpu/nvgpu/common/linux/pci.c
index 5fcf717c..15435934 100644
--- a/drivers/gpu/nvgpu/common/linux/pci.c
+++ b/drivers/gpu/nvgpu/common/linux/pci.c
@@ -469,7 +469,7 @@ static void nvgpu_pci_remove(struct pci_dev *pdev)
469 nvgpu_clk_arb_cleanup_arbiter(g); 469 nvgpu_clk_arb_cleanup_arbiter(g);
470#endif 470#endif
471 471
472 gk20a_user_deinit(g->dev, &nvgpu_pci_class); 472 gk20a_user_deinit(dev_from_gk20a(g), &nvgpu_pci_class);
473 gk20a_dbg(gpu_dbg_shutdown, "User de-init done.\b"); 473 gk20a_dbg(gpu_dbg_shutdown, "User de-init done.\b");
474 474
475#ifdef CONFIG_DEBUG_FS 475#ifdef CONFIG_DEBUG_FS
@@ -477,10 +477,10 @@ static void nvgpu_pci_remove(struct pci_dev *pdev)
477 debugfs_remove_recursive(platform->debugfs_alias); 477 debugfs_remove_recursive(platform->debugfs_alias);
478#endif 478#endif
479 479
480 nvgpu_remove_sysfs(g->dev); 480 nvgpu_remove_sysfs(dev_from_gk20a(g));
481 481
482 if (platform->remove) 482 if (platform->remove)
483 platform->remove(g->dev); 483 platform->remove(dev_from_gk20a(g));
484 gk20a_dbg(gpu_dbg_shutdown, "Platform remove done.\b"); 484 gk20a_dbg(gpu_dbg_shutdown, "Platform remove done.\b");
485 485
486 enable_irq(g->irq_stall); 486 enable_irq(g->irq_stall);