fixed typo in uart error handling function

This commit is contained in:
Thomas Doerfler
2007-01-23 21:49:00 +00:00
parent 6200dc9dd2
commit 565a65e509
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2007-01-23 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* console/console.c: corrected typo in UART error handler (usage
* of ISR_PE instead of ISR_OE)
2006-12-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* bestcomm/load_task.c: Remove bogus casts.

View File

@@ -391,7 +391,7 @@ static void mpc5200_psc_interrupt_handler(rtems_irq_hdl_param handle)
if(isr & ISR_PE)
channel_info[minor].parity_errors++;
if(isr & ISR_PE)
if(isr & ISR_OE)
channel_info[minor].overrun_errors++;
/*