at91: move clock subsystem init to soc generic init

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: Patrice Vilchez <patrice.vilchez@atmel.com>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD
2011-04-24 18:20:28 +08:00
committed by Arnd Bergmann
parent 8c3583b634
commit 465393749d
10 changed files with 18 additions and 31 deletions

View File

@ -248,5 +248,8 @@ void __init at91_map_io(void)
void __init at91_initialize(unsigned long main_clock)
{
at91_boot_soc.init(main_clock);
/* Init clock subsystem */
at91_clock_init(main_clock);
at91_boot_soc.init();
}