diff options
author | Vaibhav Hiremath <hvaibhav@ti.com> | 2012-07-05 11:05:15 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-07-05 11:05:15 -0400 |
commit | 353cec46d50a38e412112e23f9542c3d6e51a308 (patch) | |
tree | bbb8650b48be80ceca65c5fc3163f274578d3130 /arch/arm/mach-omap2/clock.c | |
parent | 576d5e3a340a8a4411d6260b2dabd4223cc1c3a3 (diff) |
ARM: OMAP2+: Move omap3 dpll ops to dpll3xxx.c
In order to remove unnecessary idefs, move noncore and core
dpll ops to dpll3xxx.c file (where it should have been already).
The clkops (clkops_omap3_core_dpll_ops & clkops_omap3_noncore_dpll_ops)
is used in clock data files, and dependency is already handled by
Makefile rule.
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
Acked-by: Paul Walmsley <paul@pwsan.com>
Cc: Kevin Hilman <khilman@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/clock.c')
-rw-r--r-- | arch/arm/mach-omap2/clock.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/arm/mach-omap2/clock.c b/arch/arm/mach-omap2/clock.c index 5c4e66542169..ea3f565ba1a4 100644 --- a/arch/arm/mach-omap2/clock.c +++ b/arch/arm/mach-omap2/clock.c | |||
@@ -398,24 +398,6 @@ int omap2_clk_set_parent(struct clk *clk, struct clk *new_parent) | |||
398 | return omap2_clksel_set_parent(clk, new_parent); | 398 | return omap2_clksel_set_parent(clk, new_parent); |
399 | } | 399 | } |
400 | 400 | ||
401 | /* OMAP3/4 non-CORE DPLL clkops */ | ||
402 | |||
403 | #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4) | ||
404 | |||
405 | const struct clkops clkops_omap3_noncore_dpll_ops = { | ||
406 | .enable = omap3_noncore_dpll_enable, | ||
407 | .disable = omap3_noncore_dpll_disable, | ||
408 | .allow_idle = omap3_dpll_allow_idle, | ||
409 | .deny_idle = omap3_dpll_deny_idle, | ||
410 | }; | ||
411 | |||
412 | const struct clkops clkops_omap3_core_dpll_ops = { | ||
413 | .allow_idle = omap3_dpll_allow_idle, | ||
414 | .deny_idle = omap3_dpll_deny_idle, | ||
415 | }; | ||
416 | |||
417 | #endif | ||
418 | |||
419 | /* | 401 | /* |
420 | * OMAP2+ clock reset and init functions | 402 | * OMAP2+ clock reset and init functions |
421 | */ | 403 | */ |