aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/clock.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-at91/clock.c')
-rw-r--r--arch/arm/mach-at91/clock.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/clock.c b/arch/arm/mach-at91/clock.c
index a5291e0e700..d1b4e0707e4 100644
--- a/arch/arm/mach-at91/clock.c
+++ b/arch/arm/mach-at91/clock.c
@@ -28,6 +28,8 @@
28#include <mach/at91_pmc.h> 28#include <mach/at91_pmc.h>
29#include <mach/cpu.h> 29#include <mach/cpu.h>
30 30
31#include <asm/proc-fns.h>
32
31#include "clock.h" 33#include "clock.h"
32#include "generic.h" 34#include "generic.h"
33 35
@@ -818,3 +820,9 @@ static int __init at91_clock_reset(void)
818 return 0; 820 return 0;
819} 821}
820late_initcall(at91_clock_reset); 822late_initcall(at91_clock_reset);
823
824void at91sam9_idle(void)
825{
826 at91_sys_write(AT91_PMC_SCDR, AT91_PMC_PCK);
827 cpu_do_idle();
828}