Commit 686455c6 authored by Richard Woodruff's avatar Richard Woodruff Committed by Tony Lindgren

This patch fixes the uart3 F&I clock enable bit position. Shutting off

all unnecessary clocks at the loader caught this.
parent e3a251de
...@@ -1469,7 +1469,7 @@ static struct clk uart3_ick = { ...@@ -1469,7 +1469,7 @@ static struct clk uart3_ick = {
.parent = &l4_ck, .parent = &l4_ck,
.flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X,
.enable_reg = (void __iomem *)&CM_ICLKEN2_CORE, .enable_reg = (void __iomem *)&CM_ICLKEN2_CORE,
.enable_bit = 3, .enable_bit = 2,
.recalc = &omap2_followparent_recalc, .recalc = &omap2_followparent_recalc,
}; };
...@@ -1478,7 +1478,7 @@ static struct clk uart3_fck = { ...@@ -1478,7 +1478,7 @@ static struct clk uart3_fck = {
.parent = &func_48m_ck, .parent = &func_48m_ck,
.flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X,
.enable_reg = (void __iomem *)&CM_FCLKEN2_CORE, .enable_reg = (void __iomem *)&CM_FCLKEN2_CORE,
.enable_bit = 3, .enable_bit = 2,
.recalc = &omap2_followparent_recalc, .recalc = &omap2_followparent_recalc,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment