summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv100
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2018-07-05 16:10:50 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-07-07 14:06:06 -0400
commite899ec032e46f1b2d19b76ed27e69de3b08e4699 (patch)
treed67e369f17b00c1dfa341729c2a92045559125ea /drivers/gpu/nvgpu/gv100
parent5f8bb126a0ca473b2e0c9cbdb91f011b2b49c4ea (diff)
gpu: nvgpu: Remove gv11b specific BAR2 deinit
gp10b and gv11b variants of remove_bar2_vm are now identical, so delete the gv11b version and use only gp10b version. JIRA NVGPU-714 Change-Id: Ie98cb29803358ddcad8aae2cf865f3baeddebfb1 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1773007 Reviewed-by: Seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-by: Alex Waterman <alexw@nvidia.com> Reviewed-by: svccoveritychecker <svccoveritychecker@nvidia.com> Reviewed-by: svc-misra-checker <svc-misra-checker@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gv100')
-rw-r--r--drivers/gpu/nvgpu/gv100/hal_gv100.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gv100/hal_gv100.c b/drivers/gpu/nvgpu/gv100/hal_gv100.c
index 20f045b2..00007044 100644
--- a/drivers/gpu/nvgpu/gv100/hal_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/hal_gv100.c
@@ -680,7 +680,7 @@ static const struct gpu_ops gv100_ops = {
680 .get_kind_invalid = gm20b_get_kind_invalid, 680 .get_kind_invalid = gm20b_get_kind_invalid,
681 .get_kind_pitch = gm20b_get_kind_pitch, 681 .get_kind_pitch = gm20b_get_kind_pitch,
682 .init_bar2_vm = gp10b_init_bar2_vm, 682 .init_bar2_vm = gp10b_init_bar2_vm,
683 .remove_bar2_vm = gv11b_mm_remove_bar2_vm, 683 .remove_bar2_vm = gp10b_remove_bar2_vm,
684 .fault_info_mem_destroy = gv11b_mm_fault_info_mem_destroy, 684 .fault_info_mem_destroy = gv11b_mm_fault_info_mem_destroy,
685 .get_flush_retries = gv100_mm_get_flush_retries, 685 .get_flush_retries = gv100_mm_get_flush_retries,
686 }, 686 },