From 686455c6362b73cbfc825614bc1476bfafae86d7 Mon Sep 17 00:00:00 2001 From: Richard Woodruff Date: Thu, 27 Oct 2005 22:04:40 +0300 Subject: [PATCH] This patch fixes the uart3 F&I clock enable bit position. Shutting off all unnecessary clocks at the loader caught this. --- arch/arm/mach-omap2/clock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, }; -- 2.41.1