From: Felipe Balbi <felipe.balbi@xxxxxxxxx> Signed-off-by: Felipe Balbi <felipe.balbi@xxxxxxxxx> --- arch/arm/mach-omap1/timer32k.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-omap1/timer32k.c b/arch/arm/mach-omap1/timer32k.c index 705367e..40d9865 100644 --- a/arch/arm/mach-omap1/timer32k.c +++ b/arch/arm/mach-omap1/timer32k.c @@ -93,12 +93,12 @@ struct sys_timer omap_timer; static inline void omap_32k_timer_write(int val, int reg) { - omap_writew(val, OMAP1_32K_TIMER_BASE + reg); + __raw_writew(val, OMAP1_32K_TIMER_BASE + reg); } static inline unsigned long omap_32k_timer_read(int reg) { - return omap_readl(OMAP1_32K_TIMER_BASE + reg) & 0xffffff; + return __raw_readl(OMAP1_32K_TIMER_BASE + reg) & 0xffffff; } static inline void omap_32k_timer_start(unsigned long load_val) @@ -156,7 +156,7 @@ static struct clock_event_device clockevent_32k_timer = { */ static inline unsigned long omap_32k_sync_timer_read(void) { - return omap_readl(TIMER_32K_SYNCHRONIZED); + return __raw_readl(TIMER_32K_SYNCHRONIZED); } static irqreturn_t omap_32k_timer_interrupt(int irq, void *dev_id) -- 1.6.0.2.307.gc427 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html