summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/clk/clk_arb.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/clk/clk_arb.c')
-rw-r--r--drivers/gpu/nvgpu/clk/clk_arb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/clk/clk_arb.c b/drivers/gpu/nvgpu/clk/clk_arb.c
index 58d529c6..df62df5e 100644
--- a/drivers/gpu/nvgpu/clk/clk_arb.c
+++ b/drivers/gpu/nvgpu/clk/clk_arb.c
@@ -1989,7 +1989,7 @@ static int nvgpu_clk_arb_change_vf_point(struct gk20a *g, u16 gpc2clk_target,
1989 1989
1990 /* descending */ 1990 /* descending */
1991 if (voltuv < arb->voltuv_actual) { 1991 if (voltuv < arb->voltuv_actual) {
1992 status = g->ops.pmu.mclk_change(g, mclk_target); 1992 status = g->ops.clk.mclk_change(g, mclk_target);
1993 if (status < 0) 1993 if (status < 0)
1994 return status; 1994 return status;
1995 1995
@@ -2009,7 +2009,7 @@ static int nvgpu_clk_arb_change_vf_point(struct gk20a *g, u16 gpc2clk_target,
2009 if (status < 0) 2009 if (status < 0)
2010 return status; 2010 return status;
2011 2011
2012 status = g->ops.pmu.mclk_change(g, mclk_target); 2012 status = g->ops.clk.mclk_change(g, mclk_target);
2013 if (status < 0) 2013 if (status < 0)
2014 return status; 2014 return status;
2015 } 2015 }