Browse Source

[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>
Russell King 16 years ago
parent
commit
0fded351a7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/arm/mach-realview/clock.c

+ 1 - 1
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)