2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>

PR 1917/bsps
	* console/config.c: Modifications to add dynamic tables for libchip
	serial drivers.
This commit is contained in:
Jennifer Averett
2011-10-18 18:31:09 +00:00
parent 5976658617
commit 32f5a41c96
2 changed files with 9 additions and 7 deletions

View File

@@ -1,3 +1,9 @@
2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>
PR 1917/bsps
* console/config.c: Modifications to add dynamic tables for libchip
serial drivers.
2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Require autoconf-2.68, automake-1.11.1.

View File

@@ -80,7 +80,7 @@ static const struct termios term2 = {
{ 0 }
};
console_tbl Console_Port_Tbl[] = {
console_tbl Console_Configuration_Ports[] = {
{
"/dev/sci0", /* sDeviceName */
SERIAL_CUSTOM, /* deviceType */
@@ -125,10 +125,6 @@ console_tbl Console_Port_Tbl[] = {
* Declare some information used by the console driver
*/
#define NUM_CONSOLE_PORTS (sizeof(Console_Port_Tbl)/sizeof(console_tbl))
#define NUM_CONSOLE_PORTS (sizeof(Console_Configuration_Ports)/sizeof(console_tbl))
unsigned long Console_Port_Count = NUM_CONSOLE_PORTS;
console_data Console_Port_Data[NUM_CONSOLE_PORTS];
rtems_device_minor_number Console_Port_Minor;
unsigned long Console_Configuration_Count = NUM_CONSOLE_PORTS;