summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAlex Van Brunt <avanbrunt@nvidia.com>2016-04-05 14:48:38 -0400
committerArto Merilainen <amerilainen@nvidia.com>2016-04-07 11:02:11 -0400
commit76ab6c1e5b351b069cde3ae8137e3fbdf4994d16 (patch)
tree9ffd2f053ca3d703972118764b73dea53023126c /drivers
parentbcb8d983ea138058dfdfea330289eb62e7ae406b (diff)
host: move nvhost to its own git repo
Move nvhost out of the common Linux repo and into its own git repo. By doing this, the same nvhost driver can work on different Linux kernel versions. Previously android/sync.h was referenced relative to kernel/drivers/video/tegra/host. However, host moved to a completely different part of the tree. Instead, reference it relative to kernel/include. bug 1749413 Change-Id: Ic7f94093c712e5b64c9b3b660d6fce5d18e59bc0 Signed-off-by: Alex Van Brunt <avanbrunt@nvidia.com> Reviewed-on: http://git-master/r/1120544 Reviewed-by: Arto Merilainen <amerilainen@nvidia.com> Tested-by: Arto Merilainen <amerilainen@nvidia.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c2
-rw-r--r--drivers/gpu/nvgpu/gk20a/fence_gk20a.c2
-rw-r--r--drivers/gpu/nvgpu/gk20a/sync_gk20a.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
index 87f0bf74..cdf36454 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.c
@@ -25,7 +25,7 @@
25#include "mm_gk20a.h" 25#include "mm_gk20a.h"
26 26
27#ifdef CONFIG_SYNC 27#ifdef CONFIG_SYNC
28#include "../../../staging/android/sync.h" 28#include "../drivers/staging/android/sync.h"
29#endif 29#endif
30 30
31#ifdef CONFIG_TEGRA_GK20A 31#ifdef CONFIG_TEGRA_GK20A
diff --git a/drivers/gpu/nvgpu/gk20a/fence_gk20a.c b/drivers/gpu/nvgpu/gk20a/fence_gk20a.c
index 70666407..87b0bee1 100644
--- a/drivers/gpu/nvgpu/gk20a/fence_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/fence_gk20a.c
@@ -22,7 +22,7 @@
22#include "sync_gk20a.h" 22#include "sync_gk20a.h"
23 23
24#ifdef CONFIG_SYNC 24#ifdef CONFIG_SYNC
25#include "../../../staging/android/sync.h" 25#include "../drivers/staging/android/sync.h"
26#endif 26#endif
27 27
28#ifdef CONFIG_TEGRA_GK20A 28#ifdef CONFIG_TEGRA_GK20A
diff --git a/drivers/gpu/nvgpu/gk20a/sync_gk20a.c b/drivers/gpu/nvgpu/gk20a/sync_gk20a.c
index e01c0e9a..87d905dd 100644
--- a/drivers/gpu/nvgpu/gk20a/sync_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/sync_gk20a.c
@@ -23,7 +23,7 @@
23#include <linux/slab.h> 23#include <linux/slab.h>
24#include <linux/spinlock.h> 24#include <linux/spinlock.h>
25#include <uapi/linux/nvgpu.h> 25#include <uapi/linux/nvgpu.h>
26#include "../../../staging/android/sync.h" 26#include "../drivers/staging/android/sync.h"
27#include "semaphore_gk20a.h" 27#include "semaphore_gk20a.h"
28 28
29static const struct sync_timeline_ops gk20a_sync_timeline_ops; 29static const struct sync_timeline_ops gk20a_sync_timeline_ops;