summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/pci.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/pci.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/pci.c b/drivers/gpu/nvgpu/common/linux/pci.c
index 3a452d18..3ff2630f 100644
--- a/drivers/gpu/nvgpu/common/linux/pci.c
+++ b/drivers/gpu/nvgpu/common/linux/pci.c
@@ -443,6 +443,7 @@ static void nvgpu_pci_remove(struct pci_dev *pdev)
443{ 443{
444 struct gk20a_platform *platform = gk20a_get_platform(&pdev->dev); 444 struct gk20a_platform *platform = gk20a_get_platform(&pdev->dev);
445 struct gk20a *g = get_gk20a(&pdev->dev); 445 struct gk20a *g = get_gk20a(&pdev->dev);
446 struct nvgpu_os_linux *l = nvgpu_os_linux_from_gk20a(g);
446 447
447 gk20a_dbg(gpu_dbg_shutdown, "Removing nvgpu driver!\n"); 448 gk20a_dbg(gpu_dbg_shutdown, "Removing nvgpu driver!\n");
448 449
@@ -474,8 +475,8 @@ static void nvgpu_pci_remove(struct pci_dev *pdev)
474 gk20a_dbg(gpu_dbg_shutdown, "User de-init done.\b"); 475 gk20a_dbg(gpu_dbg_shutdown, "User de-init done.\b");
475 476
476#ifdef CONFIG_DEBUG_FS 477#ifdef CONFIG_DEBUG_FS
477 debugfs_remove_recursive(platform->debugfs); 478 debugfs_remove_recursive(l->debugfs);
478 debugfs_remove_recursive(platform->debugfs_alias); 479 debugfs_remove_recursive(l->debugfs_alias);
479#endif 480#endif
480 481
481 nvgpu_remove_sysfs(dev_from_gk20a(g)); 482 nvgpu_remove_sysfs(dev_from_gk20a(g));