aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci/dm646x.c
diff options
context:
space:
mode:
authorMark A. Greer <mgreer@mvista.com>2009-04-15 15:39:23 -0400
committerKevin Hilman <khilman@deeprootsystems.com>2009-05-26 11:14:59 -0400
commit66e0c3991c5a1735dd8add77ab8aff5005f57681 (patch)
tree9437a2cea15b2abbdd3e440f9be3809311f3d30d /arch/arm/mach-davinci/dm646x.c
parentb9ab12797e74d93a3656ea0bf5591f8b3e094fd5 (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/dm646x.c')
-rw-r--r--arch/arm/mach-davinci/dm646x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/dm646x.c b/arch/arm/mach-davinci/dm646x.c
index cd86bb78e0c1..7cf9705be9ce 100644
--- a/arch/arm/mach-davinci/dm646x.c
+++ b/arch/arm/mach-davinci/dm646x.c
@@ -471,12 +471,12 @@ static struct davinci_soc_info davinci_soc_info_dm646x = {
471 .jtag_id_base = IO_ADDRESS(0x01c40028), 471 .jtag_id_base = IO_ADDRESS(0x01c40028),
472 .ids = dm646x_ids, 472 .ids = dm646x_ids,
473 .ids_num = ARRAY_SIZE(dm646x_ids), 473 .ids_num = ARRAY_SIZE(dm646x_ids),
474 .cpu_clks = dm646x_clks,
474}; 475};
475 476
476void __init dm646x_init(void) 477void __init dm646x_init(void)
477{ 478{
478 davinci_common_init(&davinci_soc_info_dm646x); 479 davinci_common_init(&davinci_soc_info_dm646x);
479 davinci_clk_init(dm646x_clks);
480 davinci_mux_register(dm646x_pins, ARRAY_SIZE(dm646x_pins)); 480 davinci_mux_register(dm646x_pins, ARRAY_SIZE(dm646x_pins));
481} 481}
482 482