summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2017-10-10 15:13:25 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-10-11 17:40:22 -0400
commitc53b94f1dd45384c2234e8c3f712df10395d0601 (patch)
tree6b769fd4055c9db8858436b0d391c8ad58fde705 /drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
parent50975dcf2afe7b8111d228e1520f652ac7ebe061 (diff)
gpu: nvgpu: Remove phys_addr_t from common code
Remove phys_addr_t from common code and replace it with u64. This faciliates QNX compiling the common code since phys_addr_t is a Linux specific type. JIRA NVGPU-30 JIRA NVGPU-226 Change-Id: I15fe2078f9cd0b07c7e90ad6e359c493afa56714 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1576432 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/ltc_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/ltc_gm20b.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c b/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
index 9304f90e..dee46aaf 100644
--- a/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
@@ -436,7 +436,8 @@ void gm20b_ltc_init_cbc(struct gk20a *g, struct gr_gk20a *gr)
436 u64 compbit_base_post_divide64; 436 u64 compbit_base_post_divide64;
437 437
438 if (nvgpu_is_enabled(g, NVGPU_IS_FMODEL)) 438 if (nvgpu_is_enabled(g, NVGPU_IS_FMODEL))
439 compbit_store_iova = gk20a_mem_phys(&gr->compbit_store.mem); 439 compbit_store_iova = nvgpu_mem_get_phys_addr(g,
440 &gr->compbit_store.mem);
440 else 441 else
441 compbit_store_iova = nvgpu_mem_get_addr(g, 442 compbit_store_iova = nvgpu_mem_get_addr(g,
442 &gr->compbit_store.mem); 443 &gr->compbit_store.mem);