From: Russell King Date: Sat, 8 Nov 2008 19:14:56 +0000 (+0000) Subject: [ARM] realview: correct MMC clock rate X-Git-Tag: v2.6.28-rc5~21^2~6 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=0fded351a7d03fc69484d5a9e655fbd15a8e7dab;p=linux-2.6-omap-h63xx.git [ARM] realview: correct MMC clock rate The MMC clock source is actually 24MHz, not 33MHz. Signed-off-by: Russell King --- 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)