Commit 5173804f authored by Paul Walmsley's avatar Paul Walmsley

OMAP2430 clock: make func_96m_ck parent-selectable

func_96m_ck was incorrectly marked as being rate-selectable, when in
fact it is only parent-selectable.  Remove the .set_rate and .round_rate
function pointers for this clk.
Signed-off-by: default avatarPaul Walmsley <paul@pwsan.com>
parent 81b34fbe
...@@ -210,7 +210,6 @@ static const struct clksel func_96m_clksel[] = { ...@@ -210,7 +210,6 @@ static const struct clksel func_96m_clksel[] = {
{ .parent = NULL } { .parent = NULL }
}; };
/* The parent of this clock is not selectable on 2420. */
static struct clk func_96m_ck = { static struct clk func_96m_ck = {
.name = "func_96m_ck", .name = "func_96m_ck",
.ops = &clkops_null, .ops = &clkops_null,
...@@ -221,8 +220,6 @@ static struct clk func_96m_ck = { ...@@ -221,8 +220,6 @@ static struct clk func_96m_ck = {
.clksel_mask = OMAP2430_96M_SOURCE, .clksel_mask = OMAP2430_96M_SOURCE,
.clksel = func_96m_clksel, .clksel = func_96m_clksel,
.recalc = &omap2_clksel_recalc, .recalc = &omap2_clksel_recalc,
.round_rate = &omap2_clksel_round_rate,
.set_rate = &omap2_clksel_set_rate
}; };
/* func_48m_ck */ /* func_48m_ck */
......
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