forked from Imagelibrary/rtems
2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* console/console.c: Remove all references to console_reserve_resources and termios_reserve_resources.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console.c: Remove all references to console_reserve_resources
|
||||||
|
and termios_reserve_resources.
|
||||||
|
|
||||||
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds, startup/linkcmdsflash, startup/linkcmdsram: Add
|
* startup/linkcmds, startup/linkcmdsflash, startup/linkcmdsram: Add
|
||||||
|
|||||||
@@ -595,18 +595,6 @@ IntUartPollWrite (int minor, const char *buf, int len)
|
|||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/***************************************************************************
|
|
||||||
Function : console_reserve_resources
|
|
||||||
|
|
||||||
Description : This reserves resources consumed by this driver. It passes
|
|
||||||
the request on to the termios subsystem.
|
|
||||||
***************************************************************************/
|
|
||||||
void console_reserve_resources( rtems_configuration_table *configuration )
|
|
||||||
{
|
|
||||||
rtems_termios_reserve_resources (configuration, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
Function : console_initialize
|
Function : console_initialize
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console.c: Remove all references to console_reserve_resources
|
||||||
|
and termios_reserve_resources.
|
||||||
|
|
||||||
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds, startup/linkcmdsflash, startup/linkcmdsram: Add
|
* startup/linkcmds, startup/linkcmdsflash, startup/linkcmdsram: Add
|
||||||
|
|||||||
@@ -592,18 +592,6 @@ IntUartPollWrite (int minor, const char *buf, int len)
|
|||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/***************************************************************************
|
|
||||||
Function : console_reserve_resources
|
|
||||||
|
|
||||||
Description : This reserves resources consumed by this driver. It passes
|
|
||||||
the request on to the termios subsystem.
|
|
||||||
***************************************************************************/
|
|
||||||
void console_reserve_resources( rtems_configuration_table *configuration )
|
|
||||||
{
|
|
||||||
rtems_termios_reserve_resources (configuration, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
Function : console_initialize
|
Function : console_initialize
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console.c: Remove all references to console_reserve_resources
|
||||||
|
and termios_reserve_resources.
|
||||||
|
|
||||||
2008-04-07 Eric Norum <norume@aps.anl.gov>
|
2008-04-07 Eric Norum <norume@aps.anl.gov>
|
||||||
|
|
||||||
* startup/bspstart.c: Clean up non-FPGA use of EPORT interrupts.
|
* startup/bspstart.c: Clean up non-FPGA use of EPORT interrupts.
|
||||||
|
|||||||
@@ -630,18 +630,6 @@ IntUartPollWrite (int minor, const char *buf, int len)
|
|||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/***************************************************************************
|
|
||||||
Function : console_reserve_resources
|
|
||||||
|
|
||||||
Description : This reserves resources consumed by this driver. It passes
|
|
||||||
the request on to the termios subsystem.
|
|
||||||
***************************************************************************/
|
|
||||||
void console_reserve_resources( rtems_configuration_table *configuration )
|
|
||||||
{
|
|
||||||
rtems_termios_reserve_resources (configuration, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
Function : console_initialize
|
Function : console_initialize
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console.c: Remove all references to console_reserve_resources
|
||||||
|
and termios_reserve_resources.
|
||||||
|
|
||||||
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds: Add wildcard to gcc_except_table section so
|
* startup/linkcmds: Add wildcard to gcc_except_table section so
|
||||||
|
|||||||
@@ -188,23 +188,6 @@ console_last_close(int major, int minor, void *arg)
|
|||||||
return RTEMS_SUCCESSFUL;
|
return RTEMS_SUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* console_reserve_resources --
|
|
||||||
* reserve termios resources for 2 UART channels
|
|
||||||
*
|
|
||||||
* PARAMETERS:
|
|
||||||
* configuration -- pointer to the RTEMS configuration table
|
|
||||||
*
|
|
||||||
* RETURNS:
|
|
||||||
* none
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
console_reserve_resources(rtems_configuration_table *configuration)
|
|
||||||
{
|
|
||||||
if ((console_mode != CONSOLE_MODE_RAW) &&
|
|
||||||
(console_mode != CONSOLE_MODE_IPL))
|
|
||||||
rtems_termios_reserve_resources (configuration, 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* console_initialize --
|
/* console_initialize --
|
||||||
* This routine initializes the console IO drivers and register devices
|
* This routine initializes the console IO drivers and register devices
|
||||||
* in RTEMS I/O system.
|
* in RTEMS I/O system.
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console.c: Remove all references to console_reserve_resources
|
||||||
|
and termios_reserve_resources.
|
||||||
|
|
||||||
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add
|
* startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add
|
||||||
|
|||||||
@@ -183,22 +183,6 @@ console_last_close(int major, int minor, void *arg)
|
|||||||
return RTEMS_SUCCESSFUL;
|
return RTEMS_SUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* console_reserve_resources --
|
|
||||||
* reserve termios resources for 2 UART channels
|
|
||||||
*
|
|
||||||
* PARAMETERS:
|
|
||||||
* configuration -- pointer to the RTEMS configuration table
|
|
||||||
*
|
|
||||||
* RETURNS:
|
|
||||||
* none
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
console_reserve_resources(rtems_configuration_table *configuration)
|
|
||||||
{
|
|
||||||
if (console_mode != CONSOLE_MODE_RAW)
|
|
||||||
rtems_termios_reserve_resources (configuration, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* console_initialize --
|
/* console_initialize --
|
||||||
* This routine initializes the console IO drivers and register devices
|
* This routine initializes the console IO drivers and register devices
|
||||||
* in RTEMS I/O system.
|
* in RTEMS I/O system.
|
||||||
|
|||||||
Reference in New Issue
Block a user