summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/os/linux/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/os/linux/module.c')
-rw-r--r--drivers/gpu/nvgpu/os/linux/module.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/os/linux/module.c b/drivers/gpu/nvgpu/os/linux/module.c
index 85439b88..ff4d9a4c 100644
--- a/drivers/gpu/nvgpu/os/linux/module.c
+++ b/drivers/gpu/nvgpu/os/linux/module.c
@@ -216,6 +216,14 @@ int nvgpu_finalize_poweron_linux(struct nvgpu_os_linux *l)
216 } 216 }
217 } 217 }
218 218
219 if (l->ops.fecs_trace.init_debugfs) {
220 err = l->ops.fecs_trace.init_debugfs(g);
221 if (err) {
222 nvgpu_err(g, "failed to init linux fecs trace debugfs");
223 return err;
224 }
225 }
226
219 err = nvgpu_pmgr_init_debugfs_linux(l); 227 err = nvgpu_pmgr_init_debugfs_linux(l);
220 if (err) { 228 if (err) {
221 nvgpu_err(g, "failed to init linux pmgr debugfs"); 229 nvgpu_err(g, "failed to init linux pmgr debugfs");