summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/ce2_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/ce2_gk20a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c b/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
index 5dfd2309..418572a1 100644
--- a/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
@@ -488,7 +488,7 @@ u32 gk20a_ce_create_context_with_cb(struct device *dev,
488 488
489 /* -1 means default channel priority */ 489 /* -1 means default channel priority */
490 if (priority != -1) { 490 if (priority != -1) {
491 err = gk20a_channel_set_priority(ce_ctx->ch, priority); 491 err = gk20a_fifo_set_priority(ce_ctx->ch, priority);
492 if (err) { 492 if (err) {
493 gk20a_err(ce_ctx->dev, 493 gk20a_err(ce_ctx->dev,
494 "ce: could not set the channel priority for CE context"); 494 "ce: could not set the channel priority for CE context");
@@ -498,7 +498,7 @@ u32 gk20a_ce_create_context_with_cb(struct device *dev,
498 498
499 /* -1 means default channel timeslice value */ 499 /* -1 means default channel timeslice value */
500 if (timeslice != -1) { 500 if (timeslice != -1) {
501 err = gk20a_channel_set_timeslice(ce_ctx->ch, timeslice); 501 err = gk20a_fifo_set_timeslice(ce_ctx->ch, timeslice);
502 if (err) { 502 if (err) {
503 gk20a_err(ce_ctx->dev, 503 gk20a_err(ce_ctx->dev,
504 "ce: could not set the channel timeslice value for CE context"); 504 "ce: could not set the channel timeslice value for CE context");