forked from Imagelibrary/rtems
2006-10-19 Joel Sherrill <joel@OARcorp.com>
* mongoosev/duart/mg5uart.c: Change type to unsigned.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2006-10-19 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* mongoosev/duart/mg5uart.c: Change type to unsigned.
|
||||||
|
|
||||||
2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* configure.ac: Require autoconf-2.60. Require automake-1.10.
|
* configure.ac: Require autoconf-2.60. Require automake-1.10.
|
||||||
|
|||||||
@@ -580,13 +580,13 @@ MG5UART_STATIC void mg5uart_process_isr_rx_ready(
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
uint32_t pMG5UART_port;
|
uint32_t pMG5UART_port;
|
||||||
unsigned char c;
|
char c;
|
||||||
|
|
||||||
pMG5UART_port = Console_Port_Tbl[minor].ulCtrlPort2;
|
pMG5UART_port = Console_Port_Tbl[minor].ulCtrlPort2;
|
||||||
|
|
||||||
/* reading the RX buffer automatically resets the interrupt flag */
|
/* reading the RX buffer automatically resets the interrupt flag */
|
||||||
|
|
||||||
c = (unsigned char) MG5UART_GETREG(pMG5UART_port, MG5UART_RX_BUFFER);
|
c = (char) MG5UART_GETREG(pMG5UART_port, MG5UART_RX_BUFFER);
|
||||||
|
|
||||||
rtems_termios_enqueue_raw_characters(
|
rtems_termios_enqueue_raw_characters(
|
||||||
Console_Port_Data[minor].termios_data,
|
Console_Port_Data[minor].termios_data,
|
||||||
|
|||||||
Reference in New Issue
Block a user