From: Richard Woodruff Date: Thu, 27 Oct 2005 19:04:40 +0000 (+0300) Subject: This patch fixes the uart3 F&I clock enable bit position. Shutting off X-Git-Tag: v2.6.15-omap2~127 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=686455c6362b73cbfc825614bc1476bfafae86d7;p=linux-2.6-omap-h63xx.git This patch fixes the uart3 F&I clock enable bit position. Shutting off all unnecessary clocks at the loader caught this. --- diff --git a/arch/arm/mach-omap2/clock.h b/arch/arm/mach-omap2/clock.h index 60ca5e9160a..5aa0040c8ca 100644 --- a/arch/arm/mach-omap2/clock.h +++ b/arch/arm/mach-omap2/clock.h @@ -1469,7 +1469,7 @@ static struct clk uart3_ick = { .parent = &l4_ck, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, .enable_reg = (void __iomem *)&CM_ICLKEN2_CORE, - .enable_bit = 3, + .enable_bit = 2, .recalc = &omap2_followparent_recalc, }; @@ -1478,7 +1478,7 @@ static struct clk uart3_fck = { .parent = &func_48m_ck, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, .enable_reg = (void __iomem *)&CM_FCLKEN2_CORE, - .enable_bit = 3, + .enable_bit = 2, .recalc = &omap2_followparent_recalc, };