2009-08-07 Joel Sherrill <joel.sherrill@oarcorp.com>

* console/console.c: Disable call to rtems_interrupt_catch until it is
	fixed.
This commit is contained in:
Joel Sherrill
2009-08-07 15:47:27 +00:00
parent ab808e236f
commit eeb78c5d7f
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2009-08-07 Joel Sherrill <joel.sherrill@oarcorp.com>
* console/console.c: Disable call to rtems_interrupt_catch until it is
fixed.
2009-07-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* configure.ac: Rename BSP_BOOTCARD_OPTIONS to

View File

@@ -733,10 +733,14 @@ sccInitialize (int chan)
rtems_isr_entry old_handler;
rtems_status_code sc;
#if 0
sc = rtems_interrupt_catch (sccInterruptHandler,
m8xx_console_chan_desc[chan].ivec_src
| (m8xx.cicr & 0xE0),
&old_handler);
#endif
#warning "Redo interrupt installation"
printk( "Redo interrupt installation" );
CHN_MASK_SET(chan,3); /* Enable TX and RX interrupts */
m8xx.cimr |= m8xx_console_chan_desc[chan].ireg_mask; /* Enable interrupts */
}