]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ep93xx timer: Rename struct timer_reg pointers
authorMatthias Kaehlcke <matthias@kaehlcke.net>
Tue, 9 Mar 2010 21:13:47 +0000 (22:13 +0100)
committertrix <trix@windriver.com>
Sat, 13 Mar 2010 18:44:59 +0000 (12:44 -0600)
ep93xx timer: Renamed pointers to struct timer_regs from name 'timer' to
'timer_regs' in order to avoid confusion with the global variable 'timer'

Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
cpu/arm920t/ep93xx/timer.c

index 31304b7f97b265bd27f55cdb6b16689d103f1fd1..943f193ad84110201c1793a7da478954309ad665 100644 (file)
@@ -63,9 +63,9 @@ static inline unsigned long long usecs_to_ticks(unsigned long usecs)
 
 static inline unsigned long read_timer(void)
 {
-       struct timer_regs *timer = (struct timer_regs *)TIMER_BASE;
+       struct timer_regs *timer_regs = (struct timer_regs *)TIMER_BASE;
 
-       return TIMER_MAX_VAL - readl(&timer->timer3.value);
+       return TIMER_MAX_VAL - readl(&timer_regs->timer3.value);
 }
 
 /*
@@ -120,17 +120,17 @@ void __udelay(unsigned long usec)
 
 int timer_init(void)
 {
-       struct timer_regs *timer = (struct timer_regs *)TIMER_BASE;
+       struct timer_regs *timer_regs = (struct timer_regs *)TIMER_BASE;
 
        /* use timer 3 with 508KHz and free running */
-       writel(TIMER_CLKSEL, &timer->timer3.control);
+       writel(TIMER_CLKSEL, &timer_regs->timer3.control);
 
        /* set initial timer value 3 */
-       writel(TIMER_MAX_VAL, &timer->timer3.load);
+       writel(TIMER_MAX_VAL, &timer_regs->timer3.load);
 
        /* Enable the timer */
        writel(TIMER_ENABLE | TIMER_CLKSEL,
-               &timer->timer3.control);
+               &timer_regs->timer3.control);
 
        reset_timer_masked();