2006-10-19 Joel Sherrill <joel@OARcorp.com>

* mongoosev/duart/mg5uart.c: Change type to unsigned.
This commit is contained in:
Joel Sherrill
2006-10-19 19:18:20 +00:00
parent 9a60096b12
commit e307735b24
2 changed files with 7 additions and 3 deletions

View File

@@ -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>
* configure.ac: Require autoconf-2.60. Require automake-1.10.

View File

@@ -580,13 +580,13 @@ MG5UART_STATIC void mg5uart_process_isr_rx_ready(
)
{
uint32_t pMG5UART_port;
unsigned char c;
char c;
pMG5UART_port = Console_Port_Tbl[minor].ulCtrlPort2;
/* 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(
Console_Port_Data[minor].termios_data,