diff options
Diffstat (limited to 'arch/arm/mach-omap2/timer-gp.c')
| -rw-r--r-- | arch/arm/mach-omap2/timer-gp.c | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/timer-gp.c b/arch/arm/mach-omap2/timer-gp.c index e2338c0aebc..cd04deaa88c 100644 --- a/arch/arm/mach-omap2/timer-gp.c +++ b/arch/arm/mach-omap2/timer-gp.c @@ -37,7 +37,7 @@  #include <linux/clockchips.h>  #include <asm/mach/time.h> -#include <mach/dmtimer.h> +#include <plat/dmtimer.h>  #include <asm/localtimer.h>  /* MAX_GPTIMER_ID: number of GPTIMERs on the chip */ @@ -47,6 +47,7 @@ static struct omap_dm_timer *gptimer;  static struct clock_event_device clockevent_gpt;  static u8 __initdata gptimer_id = 1;  static u8 __initdata inited; +struct omap_dm_timer *gptimer_wakeup;  static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)  { @@ -134,6 +135,7 @@ static void __init omap2_gp_clockevent_init(void)  	gptimer = omap_dm_timer_request_specific(gptimer_id);  	BUG_ON(gptimer == NULL); +	gptimer_wakeup = gptimer;  #if defined(CONFIG_OMAP_32K_TIMER)  	src = OMAP_TIMER_SRC_32_KHZ; @@ -231,7 +233,8 @@ static void __init omap2_gp_clocksource_init(void)  static void __init omap2_gp_timer_init(void)  {  #ifdef CONFIG_LOCAL_TIMERS -	twd_base = OMAP2_IO_ADDRESS(OMAP44XX_LOCAL_TWD_BASE); +	twd_base = ioremap(OMAP44XX_LOCAL_TWD_BASE, SZ_256); +	BUG_ON(!twd_base);  #endif  	omap_dm_timer_init();  |