diff options
author | David Lechner <david@lechnology.com> | 2016-04-14 21:13:35 +0200 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2016-04-27 12:33:49 +0200 |
commit | 6fc9ebbdeb75197df780c52f5ebcc3eeffb9cd91 (patch) | |
tree | 38703cfb86206cc00acef60a545f8cbc3ac1e676 /arch/arm/mach-davinci/dm355.c | |
parent | ARM: davinci: clk: add set_parent callback for mux clocks (diff) | |
download | linux-6fc9ebbdeb75197df780c52f5ebcc3eeffb9cd91.tar.xz linux-6fc9ebbdeb75197df780c52f5ebcc3eeffb9cd91.zip |
ARM: davinci: Move clock init after ioremap.
Some clocks (such as the USB PHY clocks in DA8xx) will need to use iomem.
The davinci_common_init() function must be called before the ioremap, so
the clock init is now split out as separate function.
Signed-off-by: David Lechner <david@lechnology.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm355.c')
-rw-r--r-- | arch/arm/mach-davinci/dm355.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c index a0ecf499c2f2..5a19cca7ed6a 100644 --- a/arch/arm/mach-davinci/dm355.c +++ b/arch/arm/mach-davinci/dm355.c @@ -1052,6 +1052,7 @@ void __init dm355_init(void) { davinci_common_init(&davinci_soc_info_dm355); davinci_map_sysmod(); + davinci_clk_init(davinci_soc_info_dm355.cpu_clks); } int __init dm355_init_video(struct vpfe_config *vpfe_cfg, |