diff options
Diffstat (limited to 'arch/arm/mach-realview/localtimer.c')
-rw-r--r-- | arch/arm/mach-realview/localtimer.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/arch/arm/mach-realview/localtimer.c b/arch/arm/mach-realview/localtimer.c index 60500f0b878d..50604360479f 100644 --- a/arch/arm/mach-realview/localtimer.c +++ b/arch/arm/mach-realview/localtimer.c | |||
@@ -24,9 +24,6 @@ | |||
24 | #include <asm/io.h> | 24 | #include <asm/io.h> |
25 | #include <asm/irq.h> | 25 | #include <asm/irq.h> |
26 | 26 | ||
27 | #define TWD_BASE(cpu) (__io_address(REALVIEW_EB11MP_TWD_BASE) + \ | ||
28 | ((cpu) * REALVIEW_EB11MP_TWD_SIZE)) | ||
29 | |||
30 | static DEFINE_PER_CPU(struct clock_event_device, local_clockevent); | 27 | static DEFINE_PER_CPU(struct clock_event_device, local_clockevent); |
31 | 28 | ||
32 | /* | 29 | /* |
@@ -41,6 +38,12 @@ void local_timer_interrupt(void) | |||
41 | 38 | ||
42 | #ifdef CONFIG_LOCAL_TIMERS | 39 | #ifdef CONFIG_LOCAL_TIMERS |
43 | 40 | ||
41 | #define TWD_BASE(cpu) (twd_base_addr + (cpu) * twd_size) | ||
42 | |||
43 | /* set up by the platform code */ | ||
44 | void __iomem *twd_base_addr; | ||
45 | unsigned int twd_size; | ||
46 | |||
44 | static unsigned long mpcore_timer_rate; | 47 | static unsigned long mpcore_timer_rate; |
45 | 48 | ||
46 | static void local_timer_set_mode(enum clock_event_mode mode, | 49 | static void local_timer_set_mode(enum clock_event_mode mode, |