diff options
Diffstat (limited to 'cpu/arm926ejs/omap/timer.c')
| -rw-r--r-- | cpu/arm926ejs/omap/timer.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/cpu/arm926ejs/omap/timer.c b/cpu/arm926ejs/omap/timer.c index 49e74abb3..bedc2e754 100644 --- a/cpu/arm926ejs/omap/timer.c +++ b/cpu/arm926ejs/omap/timer.c @@ -52,7 +52,7 @@ int timer_init (void)  	/* Start the decrementer ticking down from 0xffffffff */  	*((int32_t *) (CONFIG_SYS_TIMERBASE + LOAD_TIM)) = TIMER_LOAD_VAL; -	val = MPUTIM_ST | MPUTIM_AR | MPUTIM_CLOCK_ENABLE | (CONFIG_SYS_PVT << MPUTIM_PTV_BIT); +	val = MPUTIM_ST | MPUTIM_AR | MPUTIM_CLOCK_ENABLE | (CONFIG_SYS_PTV << MPUTIM_PTV_BIT);  	*((int32_t *) (CONFIG_SYS_TIMERBASE + CNTL_TIMER)) = val;  	/* init the timestamp and lastdec value */ |