From: Russell King Date: Sat, 8 Nov 2008 20:12:36 +0000 (+0000) Subject: [ARM] versatile: correct MMC clock rate X-Git-Tag: v2.6.28-rc5~21^2~5 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=7bfc0b2e266dd4cd3d3f27a3ad31bf79974190b1;p=linux-2.6-omap-h63xx.git [ARM] versatile: correct MMC clock rate The MMC clock source is actually 24MHz, not 33MHz. Signed-off-by: Russell King --- diff --git a/arch/arm/mach-versatile/clock.c b/arch/arm/mach-versatile/clock.c index 9336508ec0b..58937f1fb38 100644 --- a/arch/arm/mach-versatile/clock.c +++ b/arch/arm/mach-versatile/clock.c @@ -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)