cpufreq: tegra: fix the wrong clock name
authorJoseph Lo <[email protected]>
Fri, 23 Aug 2013 01:43:58 +0000 (09:43 +0800)
committerViresh Kumar <[email protected]>
Fri, 23 Aug 2013 16:28:28 +0000 (21:58 +0530)
The "cpu" and "pclk_p_cclk" was a virtual clock name that was used in
the legacy Tegra clock framework. It was not used after converting to
CCF. Fix it as the correct clock name that we are using.

Tested-by: Stephen Warren <[email protected]>
Signed-off-by: Joseph Lo <[email protected]>
Signed-off-by: Viresh Kumar <[email protected]>
drivers/cpufreq/tegra-cpufreq.c

index cd66b85d927caa47d5080f5c8b8da4bd03c51686..a7b876fdc1d8a5b672346233d7f7b7ce0a7c962f 100644 (file)
@@ -255,7 +255,7 @@ static struct cpufreq_driver tegra_cpufreq_driver = {
 
 static int __init tegra_cpufreq_init(void)
 {
-       cpu_clk = clk_get_sys(NULL, "cpu");
+       cpu_clk = clk_get_sys(NULL, "cclk");
        if (IS_ERR(cpu_clk))
                return PTR_ERR(cpu_clk);
 
@@ -263,7 +263,7 @@ static int __init tegra_cpufreq_init(void)
        if (IS_ERR(pll_x_clk))
                return PTR_ERR(pll_x_clk);
 
-       pll_p_clk = clk_get_sys(NULL, "pll_p_cclk");
+       pll_p_clk = clk_get_sys(NULL, "pll_p");
        if (IS_ERR(pll_p_clk))
                return PTR_ERR(pll_p_clk);