diff options
author | TsiChungLiew | 2007-08-15 15:39:17 -0500 |
---|---|---|
committer | John Rigby | 2007-08-16 17:43:19 -0600 |
commit | ab77bc547ba561c25ea34457ed17aa0b2f7c2723 (patch) | |
tree | c7e9d3c146f22730638ca0c63f1e6f150bb9a6a2 /lib_m68k/time.c | |
parent | 81735b2568cf634d601c0d4a1bbc3a3882bc8eda (diff) |
ColdFire: MCF5329 Update and cleanup
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
Diffstat (limited to 'lib_m68k/time.c')
-rw-r--r-- | lib_m68k/time.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib_m68k/time.c b/lib_m68k/time.c index 3dbce07213e..6c19059e62b 100644 --- a/lib_m68k/time.c +++ b/lib_m68k/time.c @@ -347,10 +347,9 @@ void udelay(unsigned long usec) void dtimer_interrupt(void *not_used) { volatile dtmr_t *timerp = (dtmr_t *) (CFG_TMR_BASE); - volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE); /* check for timer interrupt asserted */ - if ((intp->iprh0 & CFG_TMRINTR_MASK) == CFG_TMRINTR_MASK) { + if ((CFG_TMRPND_REG & CFG_TMRINTR_MASK) == CFG_TMRINTR_PEND) { timerp->ter = (DTIM_DTER_CAP | DTIM_DTER_REF); timestamp++; return; |