summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/mm_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/mm_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/mm_gk20a.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/mm_gk20a.c b/drivers/gpu/nvgpu/gk20a/mm_gk20a.c
index ffc695f5..750ce10c 100644
--- a/drivers/gpu/nvgpu/gk20a/mm_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/mm_gk20a.c
@@ -3548,7 +3548,7 @@ int gk20a_init_vm(struct mm_gk20a *mm,
3548 g->separate_fixed_allocs, 3548 g->separate_fixed_allocs,
3549 SZ_4K, 3549 SZ_4K,
3550 GPU_BALLOC_MAX_ORDER, 3550 GPU_BALLOC_MAX_ORDER,
3551 GPU_BALLOC_GVA_SPACE); 3551 GPU_ALLOC_GVA_SPACE);
3552 if (err) 3552 if (err)
3553 goto clean_up_ptes; 3553 goto clean_up_ptes;
3554 3554
@@ -3566,7 +3566,7 @@ int gk20a_init_vm(struct mm_gk20a *mm,
3566 small_vma_limit - small_vma_start, 3566 small_vma_limit - small_vma_start,
3567 SZ_4K, 3567 SZ_4K,
3568 GPU_BALLOC_MAX_ORDER, 3568 GPU_BALLOC_MAX_ORDER,
3569 GPU_BALLOC_GVA_SPACE); 3569 GPU_ALLOC_GVA_SPACE);
3570 if (err) 3570 if (err)
3571 goto clean_up_ptes; 3571 goto clean_up_ptes;
3572 } 3572 }
@@ -3581,7 +3581,7 @@ int gk20a_init_vm(struct mm_gk20a *mm,
3581 large_vma_limit - large_vma_start, 3581 large_vma_limit - large_vma_start,
3582 big_page_size, 3582 big_page_size,
3583 GPU_BALLOC_MAX_ORDER, 3583 GPU_BALLOC_MAX_ORDER,
3584 GPU_BALLOC_GVA_SPACE); 3584 GPU_ALLOC_GVA_SPACE);
3585 if (err) 3585 if (err)
3586 goto clean_up_small_allocator; 3586 goto clean_up_small_allocator;
3587 } 3587 }
@@ -3597,7 +3597,7 @@ int gk20a_init_vm(struct mm_gk20a *mm,
3597 kernel_vma_limit - kernel_vma_start, 3597 kernel_vma_limit - kernel_vma_start,
3598 SZ_4K, 3598 SZ_4K,
3599 GPU_BALLOC_MAX_ORDER, 3599 GPU_BALLOC_MAX_ORDER,
3600 GPU_BALLOC_GVA_SPACE); 3600 GPU_ALLOC_GVA_SPACE);
3601 if (err) 3601 if (err)
3602 goto clean_up_big_allocator; 3602 goto clean_up_big_allocator;
3603 3603