mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-27 06:58:19 +00:00
2010-04-20 Ralf Corsépius <ralf.corsepius@rtems.org>
* console/console.c: Reflect termios-API having changed.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2010-04-20 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* console/console.c: Reflect termios-API having changed.
|
||||
|
||||
2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* make/custom/gensh4.cfg: Remove RTEMS_BSP_FAMILY.
|
||||
|
||||
@@ -65,8 +65,8 @@ console_poll_read(int minor)
|
||||
* RETURNS:
|
||||
* result code
|
||||
*/
|
||||
static int
|
||||
console_interrupt_write(int minor, const char *buf, int len)
|
||||
static ssize_t
|
||||
console_interrupt_write(int minor, const char *buf, size_t len)
|
||||
{
|
||||
return sh4uart_interrupt_write(&sh4_uarts[minor], buf, len);
|
||||
}
|
||||
@@ -82,8 +82,8 @@ console_interrupt_write(int minor, const char *buf, int len)
|
||||
* RETURNS:
|
||||
* result code
|
||||
*/
|
||||
static int
|
||||
console_poll_write(int minor, const char *buf, int len)
|
||||
static ssize_t
|
||||
console_poll_write(int minor, const char *buf, size_t len)
|
||||
{
|
||||
return sh4uart_poll_write(&sh4_uarts[minor], buf, len);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user