diff options
author | Nicolas Ferre <nicolas.ferre@atmel.com> | 2014-11-26 17:19:14 +0100 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2014-11-26 18:43:44 +0100 |
commit | ff78a189b0ae55f258f020a428c834250eb8f834 (patch) | |
tree | e626ed3e0271f679c3fe9d8e99f0c4382b4bafb2 /arch/arm/mach-at91/setup.c | |
parent | b31706a281c00beb6b49be90795dfcace51e734d (diff) |
ARM: at91: remove old at91-specific clock driver
This clock driver collection was specific to AT91 and only used in !DT cases.
All clocks and the clock trees for all Atmel SoCs are now described by drivers
using the common clock framework.
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Diffstat (limited to 'arch/arm/mach-at91/setup.c')
-rw-r--r-- | arch/arm/mach-at91/setup.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/arm/mach-at91/setup.c b/arch/arm/mach-at91/setup.c index a78fbb7b13c..98b0c1a6289 100644 --- a/arch/arm/mach-at91/setup.c +++ b/arch/arm/mach-at91/setup.c @@ -460,9 +460,6 @@ void __init at91rm9200_dt_initialize(void) { at91_dt_ramc(); - /* Init clock subsystem */ - at91_dt_clock_init(); - /* Register the processor-specific clocks */ if (at91_boot_soc.register_clocks) at91_boot_soc.register_clocks(); @@ -474,9 +471,6 @@ void __init at91_dt_initialize(void) { at91_dt_ramc(); - /* Init clock subsystem */ - at91_dt_clock_init(); - /* Register the processor-specific clocks */ if (at91_boot_soc.register_clocks) at91_boot_soc.register_clocks(); @@ -490,9 +484,6 @@ void __init at91_initialize(unsigned long main_clock) { at91_boot_soc.ioremap_registers(); - /* Init clock subsystem */ - at91_clock_init(main_clock); - /* Register the processor-specific clocks */ at91_boot_soc.register_clocks(); |