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

* shared/comm/console.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:27:18 +00:00
parent e2f17090d5
commit 82d7e92d52
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* shared/comm/console.c: Reflect termios_baud_to_number having been
renamed to rtems_termios_baud_to_number.
2009-09-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
* shared/include/linker-symbols.h, shared/startup/linkcmds.base:

View File

@@ -252,9 +252,9 @@ console_control(rtems_device_major_number major,
static int
conSetAttr(int minor, const struct termios *t)
{
int baud;
rtems_termios_baud_t baud;
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);