diff options
author | Tero Kristo <t-kristo@ti.com> | 2014-03-12 20:33:45 +0400 |
---|---|---|
committer | Tero Kristo <t-kristo@ti.com> | 2015-03-27 11:55:56 +0300 |
commit | fe87414f71d0035756cf91a80ac256557d16b488 (patch) | |
tree | f9808093ca44fa2cd7f7c43182c171052945ab85 /arch/arm/mach-omap2/io.c | |
parent | 9f029b1579b2dfe291006e5bfe8e7d0c4ef20828 (diff) | |
download | linux-fe87414f71d0035756cf91a80ac256557d16b488.tar.xz |
ARM: OMAP2+: PRCM: split PRCM module init to their own driver files
Splits the clock related provider module inits under their own driver files.
Previously this was done for all modules under the common PRM driver.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/io.c')
-rw-r--r-- | arch/arm/mach-omap2/io.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index 460da22a005c..46640c0ddc0f 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c @@ -756,6 +756,10 @@ int __init omap_clk_init(void) ti_clk_init_features(); if (of_have_populated_dt()) { + ret = omap_control_init(); + if (ret) + return ret; + ret = omap_prcm_init(); if (ret) return ret; |