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 9cc4b678..f3ac28ea 100644
--- a/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
@@ -195,7 +195,7 @@ static void gk20a_ce_delete_gpu_context(struct gk20a_gpu_ctx *ce_ctx)
195 195
196 if (ce_ctx->cmd_buf_mem.cpu_va) { 196 if (ce_ctx->cmd_buf_mem.cpu_va) {
197 gk20a_ce_free_command_buffer_stored_fence(ce_ctx); 197 gk20a_ce_free_command_buffer_stored_fence(ce_ctx);
198 gk20a_gmmu_unmap_free(ce_ctx->vm, &ce_ctx->cmd_buf_mem); 198 nvgpu_dma_unmap_free(ce_ctx->vm, &ce_ctx->cmd_buf_mem);
199 } 199 }
200 200
201 /* free the channel */ 201 /* free the channel */
@@ -479,7 +479,7 @@ u32 gk20a_ce_create_context_with_cb(struct device *dev,
479 } 479 }
480 480
481 /* allocate command buffer (4096 should be more than enough) from sysmem*/ 481 /* allocate command buffer (4096 should be more than enough) from sysmem*/
482 err = gk20a_gmmu_alloc_map_sys(ce_ctx->vm, NVGPU_CE_COMMAND_BUF_SIZE, &ce_ctx->cmd_buf_mem); 482 err = nvgpu_dma_alloc_map_sys(ce_ctx->vm, NVGPU_CE_COMMAND_BUF_SIZE, &ce_ctx->cmd_buf_mem);
483 if (err) { 483 if (err) {
484 gk20a_err(ce_ctx->dev, 484 gk20a_err(ce_ctx->dev,
485 "ce: could not allocate command buffer for CE context"); 485 "ce: could not allocate command buffer for CE context");