summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
diff options
context:
space:
mode:
authorKonsta Holtta <kholtta@nvidia.com>2018-03-15 09:34:14 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-03-16 20:12:03 -0400
commit9f9035d10bdbd56e13697aab44bc36b4bd9275cd (patch)
treeb43b0ee7fb26fbbedba36e08798d8c8636cfb720 /drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
parent0378bc32e4db87dd7bb58fce2f85cd4ff436506a (diff)
gpu: nvgpu: remove fence param from channel_sync
The fence parameter that gets output from gk20a_channel_sync's wait() and wait_fd() APIs is no longer used for anything. Delete it. Jira NVGPU-527 Jira NVGPU-528 Bug 200390539 Change-Id: I659504062dc6aee83a0a0d9f5625372b4ae8c0e2 Signed-off-by: Konsta Holtta <kholtta@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1676734 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: Alex Waterman <alexw@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h16
1 files changed, 4 insertions, 12 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
index dd0213dc..3f44b27a 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
@@ -37,24 +37,16 @@ struct gk20a_channel_sync {
37 nvgpu_atomic_t refcount; 37 nvgpu_atomic_t refcount;
38 38
39 /* Generate a gpu wait cmdbuf from syncpoint. 39 /* Generate a gpu wait cmdbuf from syncpoint.
40 * Returns 40 * Returns a gpu cmdbuf that performs the wait when executed
41 * - a gpu cmdbuf that performs the wait when executed,
42 * - possibly a helper fence that the caller must hold until the
43 * cmdbuf is executed.
44 */ 41 */
45 int (*wait_syncpt)(struct gk20a_channel_sync *s, u32 id, u32 thresh, 42 int (*wait_syncpt)(struct gk20a_channel_sync *s, u32 id, u32 thresh,
46 struct priv_cmd_entry *entry, 43 struct priv_cmd_entry *entry);
47 struct gk20a_fence *fence);
48 44
49 /* Generate a gpu wait cmdbuf from sync fd. 45 /* Generate a gpu wait cmdbuf from sync fd.
50 * Returns 46 * Returns a gpu cmdbuf that performs the wait when executed
51 * - a gpu cmdbuf that performs the wait when executed,
52 * - possibly a helper fence that the caller must hold until the
53 * cmdbuf is executed.
54 */ 47 */
55 int (*wait_fd)(struct gk20a_channel_sync *s, int fd, 48 int (*wait_fd)(struct gk20a_channel_sync *s, int fd,
56 struct priv_cmd_entry *entry, 49 struct priv_cmd_entry *entry);
57 struct gk20a_fence *fence);
58 50
59 /* Increment syncpoint/semaphore. 51 /* Increment syncpoint/semaphore.
60 * Returns 52 * Returns