summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/ce2_gk20a.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/ce2_gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/ce2_gk20a.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/ce2_gk20a.h b/drivers/gpu/nvgpu/gk20a/ce2_gk20a.h
index ac0bae32..dfd19019 100644
--- a/drivers/gpu/nvgpu/gk20a/ce2_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/ce2_gk20a.h
@@ -134,13 +134,13 @@ void gk20a_ce_suspend(struct gk20a *g);
134void gk20a_ce_destroy(struct gk20a *g); 134void gk20a_ce_destroy(struct gk20a *g);
135 135
136/* CE app utility functions */ 136/* CE app utility functions */
137u32 gk20a_ce_create_context_with_cb(struct device *dev, 137u32 gk20a_ce_create_context_with_cb(struct gk20a *g,
138 int runlist_id, 138 int runlist_id,
139 int priority, 139 int priority,
140 int timeslice, 140 int timeslice,
141 int runlist_level, 141 int runlist_level,
142 ce_event_callback user_event_callback); 142 ce_event_callback user_event_callback);
143int gk20a_ce_execute_ops(struct device *dev, 143int gk20a_ce_execute_ops(struct gk20a *g,
144 u32 ce_ctx_id, 144 u32 ce_ctx_id,
145 u64 src_buf, 145 u64 src_buf,
146 u64 dst_buf, 146 u64 dst_buf,
@@ -153,7 +153,7 @@ int gk20a_ce_execute_ops(struct device *dev,
153 struct gk20a_fence **gk20a_fence_out); 153 struct gk20a_fence **gk20a_fence_out);
154void gk20a_ce_delete_context_priv(struct gk20a *g, 154void gk20a_ce_delete_context_priv(struct gk20a *g,
155 u32 ce_ctx_id); 155 u32 ce_ctx_id);
156void gk20a_ce_delete_context(struct device *dev, 156void gk20a_ce_delete_context(struct gk20a *g,
157 u32 ce_ctx_id); 157 u32 ce_ctx_id);
158 158
159 159