forked from Imagelibrary/rtems
fixed typo in uart error handling function
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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++;
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user