summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/ioctl_tsg.h
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-10-17 13:44:51 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-10-20 13:05:29 -0400
commitd7fe2fbacb06e95f921f27f99f457904a0c3a57a (patch)
tree4125b78771bfdb56b55b2681f10bfc4aff85dc47 /drivers/gpu/nvgpu/common/linux/ioctl_tsg.h
parenta2c9c6ba0573bde2d4eada8a39d4e97f9749eef1 (diff)
gpu: nvgpu: Move sched to be Linux specific
Move sched parameter APIs to be Linux specific implementation. At the same time the sched_ctrl fields were moved to nvgpu_os_linux. JIRA NVGPU-259 Change-Id: I2397e2602e1c4783f2bebf3aec462634b7f86d4a Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1580649 GVS: Gerrit_Virtual_Submit
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/ioctl_tsg.h')
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl_tsg.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl_tsg.h b/drivers/gpu/nvgpu/common/linux/ioctl_tsg.h
index 64d7a3da..67399fd4 100644
--- a/drivers/gpu/nvgpu/common/linux/ioctl_tsg.h
+++ b/drivers/gpu/nvgpu/common/linux/ioctl_tsg.h
@@ -16,11 +16,13 @@
16struct inode; 16struct inode;
17struct file; 17struct file;
18struct gk20a; 18struct gk20a;
19struct nvgpu_ref;
19 20
20int nvgpu_ioctl_tsg_dev_release(struct inode *inode, struct file *filp); 21int nvgpu_ioctl_tsg_dev_release(struct inode *inode, struct file *filp);
21int nvgpu_ioctl_tsg_dev_open(struct inode *inode, struct file *filp); 22int nvgpu_ioctl_tsg_dev_open(struct inode *inode, struct file *filp);
22int nvgpu_ioctl_tsg_open(struct gk20a *g, struct file *filp); 23int nvgpu_ioctl_tsg_open(struct gk20a *g, struct file *filp);
23long nvgpu_ioctl_tsg_dev_ioctl(struct file *filp, 24long nvgpu_ioctl_tsg_dev_ioctl(struct file *filp,
24 unsigned int cmd, unsigned long arg); 25 unsigned int cmd, unsigned long arg);
26void nvgpu_ioctl_tsg_release(struct nvgpu_ref *ref);
25 27
26#endif 28#endif