Skip to content

Commit

Permalink
[ARM] versatile: correct MMC clock rate
Browse files Browse the repository at this point in the history
The MMC clock source is actually 24MHz, not 33MHz.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Nov 8, 2008
1 parent 0fded35 commit 7bfc0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-versatile/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ static struct clk uart_clk = {

static struct clk mmci_clk = {
.name = "MCLK",
.rate = 33000000,
.rate = 24000000,
};

int clk_register(struct clk *clk)
Expand Down

0 comments on commit 7bfc0b2

Please sign in to comment.