2011-11-09 Jennifer Averett <jennifer.averett@oarcorp.com>

PR 1934/bsps
	* libchip/serial/ns16550.c: Change to unsigned variable.
This commit is contained in:
Joel Sherrill
2011-11-09 20:51:08 +00:00
parent 8d4d978d67
commit 5b6f5447c5
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2011-11-09 Jennifer Averett <jennifer.averett@oarcorp.com>
PR 1934/bsps
* libchip/serial/ns16550.c: Change to unsigned variable.
2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org> 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Require autoconf-2.68, automake-1.11.1. * configure.ac: Require autoconf-2.68, automake-1.11.1.

View File

@@ -696,7 +696,7 @@ NS16550_STATIC int ns16550_inbyte_nonblocking_polled(
{ {
uint32_t pNS16550; uint32_t pNS16550;
unsigned char ucLineStatus; unsigned char ucLineStatus;
char cChar; uint8_t cChar;
getRegister_f getReg; getRegister_f getReg;
pNS16550 = Console_Port_Tbl[minor].ulCtrlPort1; pNS16550 = Console_Port_Tbl[minor].ulCtrlPort1;