forked from Imagelibrary/rtems
2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* shared/console/console.c: Reflect termios_baud_to_number having been renamed to rtems_termios_baud_to_number.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* shared/console/console.c: Reflect termios_baud_to_number having been
|
||||||
|
renamed to rtems_termios_baud_to_number.
|
||||||
|
|
||||||
2009-09-25 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2009-09-25 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* acinclude.m4: Add qemuppc.
|
* acinclude.m4: Add qemuppc.
|
||||||
|
|||||||
@@ -305,9 +305,9 @@ static int conSetAttr(
|
|||||||
const struct termios *t
|
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 )
|
if ( baud > 115200 )
|
||||||
rtems_fatal_error_occurred (RTEMS_INTERNAL_ERROR);
|
rtems_fatal_error_occurred (RTEMS_INTERNAL_ERROR);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user