summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/nvgpu/gv11b/fifo_gv11b.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c b/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
index 90295f52..a86a9509 100644
--- a/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
@@ -889,7 +889,7 @@ static void gv11b_fifo_teardown_ch_tsg(struct gk20a *g, u32 act_eng_bitmask,
889 889
890 /* Disable power management */ 890 /* Disable power management */
891 if (g->support_pmu && g->elpg_enabled) { 891 if (g->support_pmu && g->elpg_enabled) {
892 if (gk20a_pmu_disable_elpg(g)) 892 if (nvgpu_pmu_disable_elpg(g))
893 nvgpu_err(g, "failed to set disable elpg"); 893 nvgpu_err(g, "failed to set disable elpg");
894 } 894 }
895 if (g->ops.clock_gating.slcg_gr_load_gating_prod) 895 if (g->ops.clock_gating.slcg_gr_load_gating_prod)
@@ -1018,7 +1018,7 @@ static void gv11b_fifo_teardown_ch_tsg(struct gk20a *g, u32 act_eng_bitmask,
1018 1018
1019 /* It is safe to enable ELPG again. */ 1019 /* It is safe to enable ELPG again. */
1020 if (g->support_pmu && g->elpg_enabled) 1020 if (g->support_pmu && g->elpg_enabled)
1021 gk20a_pmu_enable_elpg(g); 1021 nvgpu_pmu_enable_elpg(g);
1022} 1022}
1023 1023
1024static void gv11b_fifo_init_pbdma_intr_descs(struct fifo_gk20a *f) 1024static void gv11b_fifo_init_pbdma_intr_descs(struct fifo_gk20a *f)