aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2012-04-20 18:58:18 -0400
committerStephen Warren <swarren@nvidia.com>2012-04-25 17:22:09 -0400
commit7ff4db0967bd7d617c77dc5a66c0d95166277817 (patch)
tree43328bab20e3fe0e2c0a613b5860eabd4802342f /arch
parent60f975b98cf41476ba0e156f7523b197b046cf2b (diff)
ARM: tegra: fix pclk rate
Commit 40f9cf0 "ARM: tegra: reparent sclk to pll_c_out1" changed the rate of hclk. Since pclk is derived from that, and only has integer dividers, the pclk rate needs to change in the same fashion, from 54MHz to 60MHz. Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-tegra/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c
index e96900418682..a4fba8835136 100644
--- a/arch/arm/mach-tegra/common.c
+++ b/arch/arm/mach-tegra/common.c
@@ -87,7 +87,7 @@ static __initdata struct tegra_clk_init_table tegra20_clk_init_table[] = {
87 { "pll_c_out1", "pll_c", 120000000, true }, 87 { "pll_c_out1", "pll_c", 120000000, true },
88 { "sclk", "pll_c_out1", 120000000, true }, 88 { "sclk", "pll_c_out1", 120000000, true },
89 { "hclk", "sclk", 120000000, true }, 89 { "hclk", "sclk", 120000000, true },
90 { "pclk", "hclk", 54000000, true }, 90 { "pclk", "hclk", 60000000, true },
91 { "csite", NULL, 0, true }, 91 { "csite", NULL, 0, true },
92 { "emc", NULL, 0, true }, 92 { "emc", NULL, 0, true },
93 { "cpu", NULL, 0, true }, 93 { "cpu", NULL, 0, true },