summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf5329/console/console.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-09-30 03:53:40 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-09-30 03:53:40 +0000
commitb96f3383c2ea5f5e92d150b3a33fc3ab28ac41e1 (patch)
tree7b5c6d4aba63d9f08f1777e89ad24e135525fac9 /c/src/lib/libbsp/m68k/mcf5329/console/console.c
parent2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b96f3383c2ea5f5e92d150b3a33fc3ab28ac41e1.tar.bz2
2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* console/console.c: Reflect termios_baud_to_number having been renamed to rtems_termios_baud_to_number.
Diffstat (limited to 'c/src/lib/libbsp/m68k/mcf5329/console/console.c')
-rw-r--r--c/src/lib/libbsp/m68k/mcf5329/console/console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/m68k/mcf5329/console/console.c b/c/src/lib/libbsp/m68k/mcf5329/console/console.c
index e2768b5e80..c2ee84039b 100644
--- a/c/src/lib/libbsp/m68k/mcf5329/console/console.c
+++ b/c/src/lib/libbsp/m68k/mcf5329/console/console.c
@@ -168,7 +168,7 @@ static int IntUartSetAttributes(int minor, const struct termios *t)
/* check to see if input is valid */
if (t != (const struct termios *) 0) {
/* determine baud rate index */
- baud = termios_baud_to_number(t->c_cflag & CBAUD);
+ baud = rtems_termios_baud_to_number(t->c_cflag & CBAUD);
/* determine data bits */
switch (t->c_cflag & CSIZE) {