summaryrefslogtreecommitdiffstats
path: root/drivers/clk/mvebu
diff options
context:
space:
mode:
authorSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>2014-04-14 09:49:46 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-06-24 08:25:03 +0200
commit5be6482b4842895159bd7ece4cc40e41e40d1f90 (patch)
treec81b38f7f8075c887f45fc3742ee761b0ff055b3 /drivers/clk/mvebu
parent524bb1a2873adf0a48bf764069300391d2e2e82b (diff)
downloadbarebox-5be6482b4842895159bd7ece4cc40e41e40d1f90.tar.gz
barebox-5be6482b4842895159bd7ece4cc40e41e40d1f90.tar.xz
clk: mvebu: fix Armada 370 TCLK frequencies
This fixes Armada 370 TCLK frequencies that are off by a factor of 10. Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Diffstat (limited to 'drivers/clk/mvebu')
-rw-r--r--drivers/clk/mvebu/armada-370.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/mvebu/armada-370.c b/drivers/clk/mvebu/armada-370.c
index d189c6ca57..8d02ed93d9 100644
--- a/drivers/clk/mvebu/armada-370.c
+++ b/drivers/clk/mvebu/armada-370.c
@@ -37,8 +37,8 @@ static const struct coreclk_ratio a370_coreclk_ratios[] = {
};
static const u32 a370_tclk_freqs[] = {
- 16600000,
- 20000000,
+ 166000000,
+ 200000000,
};
static u32 a370_get_tclk_freq(void __iomem *sar)