summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/shared/comm/tty_drv.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-09-30 03:22:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-09-30 03:22:43 +0000
commite2f17090d5b9b4d29af49b5f143efa2fd3dcd29a (patch)
tree7e9a07c112fe03c05071ad1ea33e39572874efde /c/src/lib/libbsp/i386/shared/comm/tty_drv.c
parent2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e2f17090d5b9b4d29af49b5f143efa2fd3dcd29a.tar.bz2
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.
Diffstat (limited to 'c/src/lib/libbsp/i386/shared/comm/tty_drv.c')
-rw-r--r--c/src/lib/libbsp/i386/shared/comm/tty_drv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/i386/shared/comm/tty_drv.c b/c/src/lib/libbsp/i386/shared/comm/tty_drv.c
index 397fc28f1e..02d962188b 100644
--- a/c/src/lib/libbsp/i386/shared/comm/tty_drv.c
+++ b/c/src/lib/libbsp/i386/shared/comm/tty_drv.c
@@ -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);