From 972c42fddf13f658242a4f92124e5fcf194672b3 Mon Sep 17 00:00:00 2001 From: Terje Bergstrom Date: Thu, 27 Jul 2017 13:31:32 -0700 Subject: gpu: nvgpu: Move debugfs fields to os_linux Move all Linux specific debugfs dentry fields to struct nvgpu_os_linux. JIRA NVGPU-62 Change-Id: I615620005f5d042943dd2e478c1629bcc912c550 Signed-off-by: Terje Bergstrom Reviewed-on: https://git-master.nvidia.com/r/1528263 Reviewed-by: mobile promotions Tested-by: mobile promotions --- drivers/gpu/nvgpu/common/linux/pci.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'drivers/gpu/nvgpu/common/linux/pci.c') 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) { struct gk20a_platform *platform = gk20a_get_platform(&pdev->dev); struct gk20a *g = get_gk20a(&pdev->dev); + struct nvgpu_os_linux *l = nvgpu_os_linux_from_gk20a(g); gk20a_dbg(gpu_dbg_shutdown, "Removing nvgpu driver!\n"); @@ -474,8 +475,8 @@ static void nvgpu_pci_remove(struct pci_dev *pdev) gk20a_dbg(gpu_dbg_shutdown, "User de-init done.\b"); #ifdef CONFIG_DEBUG_FS - debugfs_remove_recursive(platform->debugfs); - debugfs_remove_recursive(platform->debugfs_alias); + debugfs_remove_recursive(l->debugfs); + debugfs_remove_recursive(l->debugfs_alias); #endif nvgpu_remove_sysfs(dev_from_gk20a(g)); -- cgit v1.2.2