aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorPaul Walmsley <paul@pwsan.com>2010-02-23 00:09:23 -0500
committerPaul Walmsley <paul@pwsan.com>2010-02-24 14:29:42 -0500
commit5173804fbbbff82a2fd40bc1c46655b272167af5 (patch)
tree83710beac125f5a4c2f60304d2c840e4dd0112f2 /arch/arm
parent81b34fbecbfbf24ed95c2d80d5cb14149652408f (diff)
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: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-omap2/clock2430_data.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/clock2430_data.c b/arch/arm/mach-omap2/clock2430_data.c
index 9b9470e51e04..daf643928c26 100644
--- a/arch/arm/mach-omap2/clock2430_data.c
+++ b/arch/arm/mach-omap2/clock2430_data.c
@@ -210,7 +210,6 @@ static const struct clksel func_96m_clksel[] = {
210 { .parent = NULL } 210 { .parent = NULL }
211}; 211};
212 212
213/* The parent of this clock is not selectable on 2420. */
214static struct clk func_96m_ck = { 213static struct clk func_96m_ck = {
215 .name = "func_96m_ck", 214 .name = "func_96m_ck",
216 .ops = &clkops_null, 215 .ops = &clkops_null,
@@ -221,8 +220,6 @@ static struct clk func_96m_ck = {
221 .clksel_mask = OMAP2430_96M_SOURCE, 220 .clksel_mask = OMAP2430_96M_SOURCE,
222 .clksel = func_96m_clksel, 221 .clksel = func_96m_clksel,
223 .recalc = &omap2_clksel_recalc, 222 .recalc = &omap2_clksel_recalc,
224 .round_rate = &omap2_clksel_round_rate,
225 .set_rate = &omap2_clksel_set_rate
226}; 223};
227 224
228/* func_48m_ck */ 225/* func_48m_ck */