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.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/os/linux/module.c b/drivers/gpu/nvgpu/os/linux/module.c
index 169baaf4..55f55f00 100644
--- a/drivers/gpu/nvgpu/os/linux/module.c
+++ b/drivers/gpu/nvgpu/os/linux/module.c
@@ -60,6 +60,7 @@
60#include "ctxsw_trace.h" 60#include "ctxsw_trace.h"
61#include "driver_common.h" 61#include "driver_common.h"
62#include "channel.h" 62#include "channel.h"
63#include "debug_pmgr.h"
63 64
64#ifdef CONFIG_NVGPU_SUPPORT_CDE 65#ifdef CONFIG_NVGPU_SUPPORT_CDE
65#include "cde.h" 66#include "cde.h"
@@ -214,6 +215,12 @@ int nvgpu_finalize_poweron_linux(struct nvgpu_os_linux *l)
214 } 215 }
215 } 216 }
216 217
218 err = nvgpu_pmgr_init_debugfs_linux(l);
219 if (err) {
220 nvgpu_err(g, "failed to init linux pmgr debugfs");
221 return err;
222 }
223
217 l->init_done = true; 224 l->init_done = true;
218 225
219 return 0; 226 return 0;