2010-04-28 Joel Sherrill <joel.sherrilL@OARcorp.com>

* startup/bspclean.c, startup/bspstart.c: Remove warnings.
This commit is contained in:
Joel Sherrill
2010-04-28 13:23:11 +00:00
parent cbf3e3a025
commit 423f7e02a8
3 changed files with 12 additions and 8 deletions

View File

@@ -1,3 +1,7 @@
2010-04-28 Joel Sherrill <joel.sherrilL@OARcorp.com>
* startup/bspclean.c, startup/bspstart.c: Remove warnings.
2009-12-16 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* console/console.c: adapted to new prototype for *_write

View File

@@ -3,7 +3,7 @@
* These routines return control to 167Bug after a normal exit from the
* application.
*
* COPYRIGHT (c) 1989-1999.
* COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -20,6 +20,9 @@
#include <bsp.h>
#include <page_table.h>
extern void start( void );
extern void page_table_teardown( void );
/*
* bsp_return_to_monitor_trap
*
@@ -34,9 +37,6 @@
*/
static void bsp_return_to_monitor_trap( void )
{
extern void start( void );
extern void page_table_teardown( void );
register volatile void *start_addr;
page_table_teardown();

View File

@@ -5,7 +5,7 @@
* CPU dependent initialization has been performed before any of these are
* invoked.
*
* COPYRIGHT (c) 1989-1999.
* COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -25,6 +25,9 @@
/* XXX If RTEMS let the BSP replace the default fatal error handler... */
rtems_extensions_table user_extension_table;
void M68KFPSPInstallExceptionHandlers (void);
extern m68k_isr_entry M68Kvec[];
/*
* bsp_start()
*
@@ -54,9 +57,6 @@ rtems_extensions_table user_extension_table;
*/
void bsp_start( void )
{
void M68KFPSPInstallExceptionHandlers (void);
extern m68k_isr_entry M68Kvec[];
m68k_isr_entry *rom_monitor_vector_table;
int index;