summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/ioctl.h
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-09-27 16:07:57 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-10-10 16:40:53 -0400
commitb41e1417787aabf8e2d37f3259bce2a4ad041607 (patch)
tree37f21961bc128fc1136a3e34b73441f0c1b8baf4 /drivers/gpu/nvgpu/common/linux/ioctl.h
parent4f56c88febf0cc8630ad75f184ada11a9d4894ed (diff)
gpu: nvgpu: Declare gk20a_user_*init() in ioctl.h
The functions are gk20a_user_init() and gk20a_user_deinit() are defined in ioctl.c. Move declaration of the functions to new header file ioctl.h. JIRA NVGPU-259 Change-Id: If348b51e9032083f252a7c7717ed7bc153dbba52 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1569696 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/ioctl.h')
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl.h b/drivers/gpu/nvgpu/common/linux/ioctl.h
new file mode 100644
index 00000000..7bf16711
--- /dev/null
+++ b/drivers/gpu/nvgpu/common/linux/ioctl.h
@@ -0,0 +1,23 @@
1/*
2 * Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 */
13#ifndef __NVGPU_IOCTL_H__
14#define __NVGPU_IOCTL_H__
15
16struct device;
17struct class;
18
19int gk20a_user_init(struct device *dev, const char *interface_name,
20 struct class *class);
21void gk20a_user_deinit(struct device *dev, struct class *class);
22
23#endif