diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-11-08 19:14:56 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-11-08 23:08:55 +0000 |
commit | 0fded351a7d03fc69484d5a9e655fbd15a8e7dab (patch) | |
tree | 209632f3fc195a350a724023ebe8c4226ebd12c0 /arch/arm | |
parent | 72bc2b1ad62f4d2f0a51b35829093d41f55accce (diff) |
[ARM] realview: correct MMC clock rate
The MMC clock source is actually 24MHz, not 33MHz.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-realview/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-realview/clock.c b/arch/arm/mach-realview/clock.c index 3e706c57833..3347c4236a6 100644 --- a/arch/arm/mach-realview/clock.c +++ b/arch/arm/mach-realview/clock.c @@ -104,7 +104,7 @@ static struct clk uart_clk = { static struct clk mmci_clk = { .name = "MCLK", - .rate = 33000000, + .rate = 24000000, }; int clk_register(struct clk *clk) |