summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/channel_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_gk20a.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_gk20a.c b/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
index 3fa6bb25..b963ad96 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
@@ -515,7 +515,7 @@ void gk20a_channel_abort_clean_up(struct channel_gk20a *ch)
515 while (tmp_get != put) { 515 while (tmp_get != put) {
516 job = &ch->joblist.pre_alloc.jobs[tmp_get]; 516 job = &ch->joblist.pre_alloc.jobs[tmp_get];
517 if (job->post_fence->semaphore) { 517 if (job->post_fence->semaphore) {
518 __gk20a_semaphore_release( 518 __nvgpu_semaphore_release(
519 job->post_fence->semaphore, true); 519 job->post_fence->semaphore, true);
520 released_job_semaphore = true; 520 released_job_semaphore = true;
521 } 521 }
@@ -525,7 +525,7 @@ void gk20a_channel_abort_clean_up(struct channel_gk20a *ch)
525 list_for_each_entry_safe(job, n, 525 list_for_each_entry_safe(job, n,
526 &ch->joblist.dynamic.jobs, list) { 526 &ch->joblist.dynamic.jobs, list) {
527 if (job->post_fence->semaphore) { 527 if (job->post_fence->semaphore) {
528 __gk20a_semaphore_release( 528 __nvgpu_semaphore_release(
529 job->post_fence->semaphore, true); 529 job->post_fence->semaphore, true);
530 released_job_semaphore = true; 530 released_job_semaphore = true;
531 } 531 }
@@ -1006,7 +1006,7 @@ static void gk20a_free_channel(struct channel_gk20a *ch, bool force)
1006 * as the semaphore pool might get freed after that point. 1006 * as the semaphore pool might get freed after that point.
1007 */ 1007 */
1008 if (ch->hw_sema) 1008 if (ch->hw_sema)
1009 gk20a_semaphore_free_hw_sema(ch); 1009 nvgpu_semaphore_free_hw_sema(ch);
1010 1010
1011 /* 1011 /*
1012 * When releasing the channel we unbind the VM - so release the ref. 1012 * When releasing the channel we unbind the VM - so release the ref.