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

* startup/bsppredriverhook.c: Remove warnings.
This commit is contained in:
Joel Sherrill
2010-04-28 19:43:39 +00:00
parent b57c3491a1
commit 693b6db8d4
4 changed files with 10 additions and 4 deletions

View File

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

View File

@@ -16,6 +16,7 @@
#include <bsp.h>
extern void Spurious_Initialize(void);
/*
* Call Spurious_Initialize in bsp_predriver_hook because
@@ -23,6 +24,5 @@
*/
void bsp_predriver_hook(void)
{
extern void Spurious_Initialize(void);
Spurious_Initialize();
}

View File

@@ -1,3 +1,7 @@
2010-04-28 Joel Sherrill <joel.sherrilL@OARcorp.com>
* startup/bsppredriverhook.c: Remove warnings.
2010-04-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* console/debugio.c: Include <unistd.h>.

View File

@@ -16,9 +16,7 @@ extern void bsp_spurious_initialize(void);
void bsp_predriver_hook(void)
{
#if defined(mcpu32)
#warning "do something about vectors!!!"
#endif
/* on CPU32: do something about vectors!!! */
bsp_spurious_initialize();
}