summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-03-31 16:11:29 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-04-03 17:04:10 -0400
commitf116320137b0eb835bcbf704d34fc8f7880595d2 (patch)
tree394e1f1b2a7d80dddcc2f2462091789458b59261 /drivers/gpu/nvgpu/gp10b
parent2119213467a9e70a7e6cbf78d9b8954b27898716 (diff)
gpu: nvgpu: Add wrapper for linux/types.h
Add wrapper header nvgpu/types.h. It checks if build is for Linux kernel and pulls in linux/types.h. Delete also all #includes for linux/types.h which are not strictly necessary, and change the remaining ones to use the new wrapper. JIRA NVGPU-13 Change-Id: I1ddfef0b0b9d840e3e41a62f69c7cb9148d2d5fa Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1453371 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b')
-rw-r--r--drivers/gpu/nvgpu/gp10b/fb_gp10b.c2
-rw-r--r--drivers/gpu/nvgpu/gp10b/fifo_gp10b.c1
-rw-r--r--drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.c1
-rw-r--r--drivers/gpu/nvgpu/gp10b/hal_gp10b.c2
-rw-r--r--drivers/gpu/nvgpu/gp10b/ltc_gp10b.c2
-rw-r--r--drivers/gpu/nvgpu/gp10b/mc_gp10b.c2
6 files changed, 0 insertions, 10 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/fb_gp10b.c b/drivers/gpu/nvgpu/gp10b/fb_gp10b.c
index db4716f3..aa6b543a 100644
--- a/drivers/gpu/nvgpu/gp10b/fb_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/fb_gp10b.c
@@ -13,8 +13,6 @@
13 * more details. 13 * more details.
14 */ 14 */
15 15
16#include <linux/types.h>
17
18#include "gk20a/gk20a.h" 16#include "gk20a/gk20a.h"
19#include "gm20b/fb_gm20b.h" 17#include "gm20b/fb_gm20b.h"
20#include "gk20a/kind_gk20a.h" 18#include "gk20a/kind_gk20a.h"
diff --git a/drivers/gpu/nvgpu/gp10b/fifo_gp10b.c b/drivers/gpu/nvgpu/gp10b/fifo_gp10b.c
index 6f576e3f..6f1a0298 100644
--- a/drivers/gpu/nvgpu/gp10b/fifo_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/fifo_gp10b.c
@@ -14,7 +14,6 @@
14 */ 14 */
15 15
16#include <linux/delay.h> 16#include <linux/delay.h>
17#include <linux/types.h>
18 17
19#include "fifo_gp10b.h" 18#include "fifo_gp10b.h"
20 19
diff --git a/drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.c b/drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.c
index 563819de..afb933e9 100644
--- a/drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.c
+++ b/drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.c
@@ -20,7 +20,6 @@
20#ifndef __gp10b_gating_reglist_h__ 20#ifndef __gp10b_gating_reglist_h__
21#define __gp10b_gating_reglist_h__ 21#define __gp10b_gating_reglist_h__
22 22
23#include <linux/types.h>
24#include "gp10b_gating_reglist.h" 23#include "gp10b_gating_reglist.h"
25 24
26struct gating_desc { 25struct gating_desc {
diff --git a/drivers/gpu/nvgpu/gp10b/hal_gp10b.c b/drivers/gpu/nvgpu/gp10b/hal_gp10b.c
index fc1168f5..95fdccea 100644
--- a/drivers/gpu/nvgpu/gp10b/hal_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/hal_gp10b.c
@@ -13,10 +13,8 @@
13 * more details. 13 * more details.
14 */ 14 */
15 15
16#include <linux/types.h>
17#include <linux/printk.h> 16#include <linux/printk.h>
18#include <linux/version.h> 17#include <linux/version.h>
19#include <linux/types.h>
20 18
21#include "gk20a/gk20a.h" 19#include "gk20a/gk20a.h"
22#include "gk20a/dbg_gpu_gk20a.h" 20#include "gk20a/dbg_gpu_gk20a.h"
diff --git a/drivers/gpu/nvgpu/gp10b/ltc_gp10b.c b/drivers/gpu/nvgpu/gp10b/ltc_gp10b.c
index 9a11d90b..e1aa34a9 100644
--- a/drivers/gpu/nvgpu/gp10b/ltc_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/ltc_gp10b.c
@@ -13,8 +13,6 @@
13 * more details. 13 * more details.
14 */ 14 */
15 15
16#include <linux/types.h>
17
18#include <dt-bindings/memory/tegra-swgroup.h> 16#include <dt-bindings/memory/tegra-swgroup.h>
19 17
20#include "gk20a/gk20a.h" 18#include "gk20a/gk20a.h"
diff --git a/drivers/gpu/nvgpu/gp10b/mc_gp10b.c b/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
index 4a8dc4c1..5842cb62 100644
--- a/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/mc_gp10b.c
@@ -13,8 +13,6 @@
13 * more details. 13 * more details.
14 */ 14 */
15 15
16#include <linux/types.h>
17
18#include "gk20a/gk20a.h" 16#include "gk20a/gk20a.h"
19#include "gk20a/mc_gk20a.h" 17#include "gk20a/mc_gk20a.h"
20 18