summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
diff options
context:
space:
mode:
authorDeepak Goyal <dgoyal@nvidia.com>2017-01-10 00:44:03 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-18 19:46:55 -0500
commitfbc713e22a4d583ef3aa5fdb9116c09c554e3fbf (patch)
tree088a9c4f4b647f2eb616b2ce0d346c74d9edeb8c /drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
parenta69fa0e96cb8ca253ec3468f288f410219129b9a (diff)
nvgpu: gp10b: Use gops to call pmu_bootstrap().
gops should be used to call non-secure pmu boot functions instead of using direct func() names. JIRA GV11B-30 Change-Id: I27da3b84b61eb978965ae9325ba58e2d02bc6ede Signed-off-by: Deepak Goyal <dgoyal@nvidia.com> Reviewed-on: http://git-master/r/1282552 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b/pmu_gp10b.c')
-rw-r--r--drivers/gpu/nvgpu/gp10b/pmu_gp10b.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c b/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
index d31ea03b..b385f11e 100644
--- a/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
@@ -328,7 +328,7 @@ static int gp10b_init_pmu_setup_hw1(struct gk20a *g)
328 pwr_fbif_transcfg_mem_type_physical_f() | 328 pwr_fbif_transcfg_mem_type_physical_f() |
329 pwr_fbif_transcfg_target_noncoherent_sysmem_f()); 329 pwr_fbif_transcfg_target_noncoherent_sysmem_f());
330 330
331 err = pmu_bootstrap(pmu); 331 err = g->ops.pmu.pmu_nsbootstrap(pmu);
332 if (err) 332 if (err)
333 return err; 333 return err;
334 334