1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-10-10 12:36:34 +02:00

ColdFire: Fix 5282 and 5271 interrupt mask bit

Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
This commit is contained in:
TsiChungLiew
2008-01-30 15:04:42 -06:00
committed by John Rigby
parent b6f29c84c2
commit c54f9263e4

View File

@@ -77,7 +77,7 @@ void dtimer_intr_setup(void)
volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE);
intp->icr0[CFG_TMRINTR_NO] = CFG_TMRINTR_PRI;
intp->imrl0 &= ~0xFFFFFFFE;
intp->imrl0 &= 0xFFFFFFFE;
intp->imrl0 &= ~CFG_TMRINTR_MASK;
}
#endif /* CONFIG_MCFTMR */