ARM: mmp: Switch to using timer 1 as clocksource timer.
authorLennert Buytenhek <[email protected]>
Tue, 9 Aug 2011 18:37:34 +0000 (02:37 +0800)
committerEric Miao <[email protected]>
Thu, 11 Aug 2011 02:10:45 +0000 (10:10 +0800)
Signed-off-by: Lennert Buytenhek <[email protected]>
Acked-by: Haojian Zhuang <[email protected]>
Signed-off-by: Eric Miao <[email protected]>
arch/arm/mach-mmp/time.c

index 09e88c25fe8eb1ff9755a4fca3ca886d25f7ef52..c53715edfa825c5f428c94bcfecef208ee9c992b 100644 (file)
@@ -51,12 +51,12 @@ static inline uint32_t timer_read(void)
 {
        int delay = 100;
 
-       __raw_writel(1, TIMERS_VIRT_BASE + TMR_CVWR(0));
+       __raw_writel(1, TIMERS_VIRT_BASE + TMR_CVWR(1));
 
        while (delay--)
                cpu_relax();
 
-       return __raw_readl(TIMERS_VIRT_BASE + TMR_CVWR(0));
+       return __raw_readl(TIMERS_VIRT_BASE + TMR_CVWR(1));
 }
 
 unsigned long long notrace sched_clock(void)