Skip to content
Snippets Groups Projects
Commit c54f9263 authored by TsiChung Liew's avatar TsiChung Liew Committed by John Rigby
Browse files

ColdFire: Fix 5282 and 5271 interrupt mask bit

parent b6f29c84
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ void dtimer_intr_setup(void) ...@@ -77,7 +77,7 @@ void dtimer_intr_setup(void)
volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE); volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE);
intp->icr0[CFG_TMRINTR_NO] = CFG_TMRINTR_PRI; intp->icr0[CFG_TMRINTR_NO] = CFG_TMRINTR_PRI;
intp->imrl0 &= ~0xFFFFFFFE; intp->imrl0 &= 0xFFFFFFFE;
intp->imrl0 &= ~CFG_TMRINTR_MASK; intp->imrl0 &= ~CFG_TMRINTR_MASK;
} }
#endif /* CONFIG_MCFTMR */ #endif /* CONFIG_MCFTMR */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment