diff options
author | Mark A. Greer <mgreer@mvista.com> | 2009-04-15 15:39:23 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-05-26 11:14:59 -0400 |
commit | 66e0c3991c5a1735dd8add77ab8aff5005f57681 (patch) | |
tree | 9437a2cea15b2abbdd3e440f9be3809311f3d30d /arch/arm/mach-davinci/dm355.c | |
parent | b9ab12797e74d93a3656ea0bf5591f8b3e094fd5 (diff) |
davinci: Add clock init call to common init routine
All of the davinci SoCs need to call davinci_clk_init() so
put the call in the common init routine.
Signed-off-by: Mark A. Greer <mgreer@mvista.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm355.c')
-rw-r--r-- | arch/arm/mach-davinci/dm355.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c index 0f724c060084..e93840a814ed 100644 --- a/arch/arm/mach-davinci/dm355.c +++ b/arch/arm/mach-davinci/dm355.c | |||
@@ -551,12 +551,12 @@ static struct davinci_soc_info davinci_soc_info_dm355 = { | |||
551 | .jtag_id_base = IO_ADDRESS(0x01c40028), | 551 | .jtag_id_base = IO_ADDRESS(0x01c40028), |
552 | .ids = dm355_ids, | 552 | .ids = dm355_ids, |
553 | .ids_num = ARRAY_SIZE(dm355_ids), | 553 | .ids_num = ARRAY_SIZE(dm355_ids), |
554 | .cpu_clks = dm355_clks, | ||
554 | }; | 555 | }; |
555 | 556 | ||
556 | void __init dm355_init(void) | 557 | void __init dm355_init(void) |
557 | { | 558 | { |
558 | davinci_common_init(&davinci_soc_info_dm355); | 559 | davinci_common_init(&davinci_soc_info_dm355); |
559 | davinci_clk_init(dm355_clks); | ||
560 | davinci_mux_register(dm355_pins, ARRAY_SIZE(dm355_pins));; | 560 | davinci_mux_register(dm355_pins, ARRAY_SIZE(dm355_pins));; |
561 | } | 561 | } |
562 | 562 | ||