2002-11-01 Joel Sherrill <joel@OARcorp.com>

* clock/ckinit.c, console/console.c: Removed warnings.
This commit is contained in:
Joel Sherrill
2002-11-01 21:57:01 +00:00
parent 09e19e62a7
commit a1a84a3901
3 changed files with 8 additions and 5 deletions
+4
View File
@@ -1,3 +1,7 @@
2002-11-01 Joel Sherrill <joel@OARcorp.com>
* clock/ckinit.c, console/console.c: Removed warnings.
2002-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* .cvsignore: Reformat.
+2 -2
View File
@@ -102,7 +102,7 @@ Install_clock(rtems_isr_entry clock_isr)
Clock_driver_ticks = 0;
if (BSP_Configuration.ticks_per_timeslice)
{
void *old_isr;
rtems_isr_entry old_isr;
period = Cpu_table.clicks_per_second /
BSP_Configuration.ticks_per_timeslice;
@@ -169,7 +169,7 @@ Clock_control(rtems_device_major_number major,
if (args)
{
void *old_isr;
rtems_isr_entry old_isr;
/*
* This is hokey, but until we get a defined interface
* to do this, it will just be this simple...
+2 -3
View File
@@ -159,9 +159,6 @@ console_start_remote_tx(int minor)
static int
console_first_open(int major, int minor, void *arg)
{
rtems_libio_open_close_args_t *args = arg;
rtems_status_code sc;
if (minor != 0)
{
return RTEMS_INVALID_NUMBER; /* Single console supported */
@@ -426,4 +423,6 @@ console_control(rtems_device_major_number major,
{
return RTEMS_SUCCESSFUL;
}
return RTEMS_SUCCESSFUL;
}