Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/c54f9263e4e11e34b1e70c160bc467ef1d8ec59d You should set ROOT_URL correctly, otherwise the web may not work correctly.

ColdFire: Fix 5282 and 5271 interrupt mask bit

Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
master
TsiChungLiew 17 years ago committed by John Rigby
parent b6f29c84c2
commit c54f9263e4
  1. 2
      cpu/mcf52x2/interrupts.c

@ -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 */

Loading…
Cancel
Save