summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/ioctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/ioctl.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl.c b/drivers/gpu/nvgpu/common/linux/ioctl.c
index db252aeb..0e88e91e 100644
--- a/drivers/gpu/nvgpu/common/linux/ioctl.c
+++ b/drivers/gpu/nvgpu/common/linux/ioctl.c
@@ -23,10 +23,10 @@
23#include "gk20a/gk20a.h" 23#include "gk20a/gk20a.h"
24#include "gk20a/dbg_gpu_gk20a.h" 24#include "gk20a/dbg_gpu_gk20a.h"
25#include "gk20a/ctxsw_trace_gk20a.h" 25#include "gk20a/ctxsw_trace_gk20a.h"
26#include "gk20a/tsg_gk20a.h"
27#include "ioctl_channel.h" 26#include "ioctl_channel.h"
28#include "ioctl_ctrl.h" 27#include "ioctl_ctrl.h"
29#include "ioctl_as.h" 28#include "ioctl_as.h"
29#include "ioctl_tsg.h"
30 30
31#define GK20A_NUM_CDEVS 7 31#define GK20A_NUM_CDEVS 7
32 32
@@ -89,12 +89,12 @@ static const struct file_operations gk20a_prof_ops = {
89 89
90static const struct file_operations gk20a_tsg_ops = { 90static const struct file_operations gk20a_tsg_ops = {
91 .owner = THIS_MODULE, 91 .owner = THIS_MODULE,
92 .release = gk20a_tsg_dev_release, 92 .release = nvgpu_ioctl_tsg_dev_release,
93 .open = gk20a_tsg_dev_open, 93 .open = nvgpu_ioctl_tsg_dev_open,
94#ifdef CONFIG_COMPAT 94#ifdef CONFIG_COMPAT
95 .compat_ioctl = gk20a_tsg_dev_ioctl, 95 .compat_ioctl = nvgpu_ioctl_tsg_dev_ioctl,
96#endif 96#endif
97 .unlocked_ioctl = gk20a_tsg_dev_ioctl, 97 .unlocked_ioctl = nvgpu_ioctl_tsg_dev_ioctl,
98}; 98};
99 99
100static const struct file_operations gk20a_ctxsw_ops = { 100static const struct file_operations gk20a_ctxsw_ops = {