summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/clk_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/clk_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/clk_gk20a.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/clk_gk20a.c b/drivers/gpu/nvgpu/gk20a/clk_gk20a.c
index 30f2b4ed..08e10901 100644
--- a/drivers/gpu/nvgpu/gk20a/clk_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/clk_gk20a.c
@@ -33,7 +33,7 @@
33 gk20a_dbg(gpu_dbg_clk, fmt, ##arg) 33 gk20a_dbg(gpu_dbg_clk, fmt, ##arg)
34 34
35/* from vbios PLL info table */ 35/* from vbios PLL info table */
36struct pll_parms gpc_pll_params = { 36static struct pll_parms gpc_pll_params = {
37 144000, 2064000, /* freq */ 37 144000, 2064000, /* freq */
38 1000000, 2064000, /* vco */ 38 1000000, 2064000, /* vco */
39 12000, 38000, /* u */ 39 12000, 38000, /* u */
@@ -677,6 +677,7 @@ int gk20a_init_clk_support(struct gk20a *g)
677void gk20a_init_clk_ops(struct gpu_ops *gops) 677void gk20a_init_clk_ops(struct gpu_ops *gops)
678{ 678{
679 gops->clk.init_clk_support = gk20a_init_clk_support; 679 gops->clk.init_clk_support = gk20a_init_clk_support;
680 gops->clk.suspend_clk_support = gk20a_suspend_clk_support;
680} 681}
681 682
682unsigned long gk20a_clk_get_rate(struct gk20a *g) 683unsigned long gk20a_clk_get_rate(struct gk20a *g)