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

* mpc8xx/console-generic/console-generic.c, mpc8xx/cpm/dpram.c,
	mpc8xx/exceptions/raw_exception.c, ppc403/clock/clock.c:
	Removed warnings.
This commit is contained in:
Joel Sherrill
2002-11-01 21:58:52 +00:00
parent 17ed00e431
commit 2247a69348
5 changed files with 16 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2002-11-01 Joel Sherrill <joel@OARcorp.com>
* mpc8xx/console-generic/console-generic.c, mpc8xx/cpm/dpram.c,
mpc8xx/exceptions/raw_exception.c, ppc403/clock/clock.c:
Removed warnings.
2002-10-31 Joel Sherrill <joel@OARcorp.com> 2002-10-31 Joel Sherrill <joel@OARcorp.com>
* mpc6xx/clock/c_clock.c, mpc6xx/exceptions/raw_exception.c, * mpc6xx/clock/c_clock.c, mpc6xx/exceptions/raw_exception.c,

View File

@@ -56,6 +56,7 @@
#include <bsp/irq.h> #include <bsp/irq.h>
#include <rtems/bspIo.h> /* for printk */ #include <rtems/bspIo.h> /* for printk */
int BSP_irq_enabled_at_cpm(const rtems_irq_symbolic_name irqLine);
extern rtems_cpu_table Cpu_table; extern rtems_cpu_table Cpu_table;
/* BSP supplied routine */ /* BSP supplied routine */

View File

@@ -17,6 +17,8 @@
#include <mpc8xx.h> #include <mpc8xx.h>
#include <mpc8xx/cpm.h> #include <mpc8xx/cpm.h>
extern void rtems_panic(char *, int);
/* /*
* Allocation order: * Allocation order:
* - Dual-Port RAM section 0 * - Dual-Port RAM section 0

View File

@@ -24,6 +24,7 @@
#include <libcpu/raw_exception.h> #include <libcpu/raw_exception.h>
#include <libcpu/cpuIdent.h> #include <libcpu/cpuIdent.h>
#include <rtems/bspIo.h> /* for printk */ #include <rtems/bspIo.h> /* for printk */
#include <string.h>
static rtems_raw_except_connect_data* raw_except_table; static rtems_raw_except_connect_data* raw_except_table;
static rtems_raw_except_connect_data default_raw_except_entry; static rtems_raw_except_connect_data default_raw_except_entry;

View File

@@ -49,6 +49,12 @@ static rtems_boolean auto_restart;
void Clock_exit( void ); void Clock_exit( void );
rtems_isr_entry set_vector( /* returns old vector */
rtems_isr_entry handler, /* isr routine */
rtems_vector_number vector, /* vector number */
int type /* RTEMS or RAW intr */
);
/* /*
* These are set by clock driver during its init * These are set by clock driver during its init
*/ */