2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>

* shared/comm/tty_drv.c: Reflect termios_baud_to_number having been
	renamed to rtems_termios_baud_to_number.
This commit is contained in:
Ralf Corsepius
2009-09-30 03:22:43 +00:00
parent 8ca0b68e6a
commit e2f17090d5
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* shared/comm/tty_drv.c: Reflect termios_baud_to_number having been
renamed to rtems_termios_baud_to_number.
2009-07-01 Sebastian Huber <sebastian.huber@embedded-brains.de>
* shared/irq/irq.h, shared/irq/irq.c, shared/irq/irq_init.c: Converted
+1 -1
View File
@@ -261,7 +261,7 @@ conSetAttr(int port, int minor, const struct termios *t)
{
unsigned long baud, databits, parity, stopbits;
baud = termios_baud_to_number(t->c_cflag & CBAUD);
baud = rtems_termios_baud_to_number(t->c_cflag & CBAUD);
if ( baud > 115200 )
rtems_fatal_error_occurred (RTEMS_INTERNAL_ERROR);