summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/virtex4
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-11-14 11:14:21 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-11-14 14:06:59 +0100
commit3a1d9c6711e2b03d9afa6132b5f976d0e352221a (patch)
tree87d158c9e9ca2f8314aa2d416e2364ece081afbd /c/src/lib/libbsp/powerpc/virtex4
parentpowerpc: Delete _CPU_Install_interrupt_stack() (diff)
downloadrtems-3a1d9c6711e2b03d9afa6132b5f976d0e352221a.tar.bz2
bsps: Include <bsp/bootcard.h>
Use <bsp/bootcard.h> to get prototype for bsp_cleanup(). Fix bsp_cleanup() definition if necessary.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/virtex4')
-rw-r--r--c/src/lib/libbsp/powerpc/virtex4/startup/bspclean.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/powerpc/virtex4/startup/bspclean.c b/c/src/lib/libbsp/powerpc/virtex4/startup/bspclean.c
index df2d7af477..75f95e645b 100644
--- a/c/src/lib/libbsp/powerpc/virtex4/startup/bspclean.c
+++ b/c/src/lib/libbsp/powerpc/virtex4/startup/bspclean.c
@@ -32,15 +32,15 @@
* http://www.rtems.com/license/LICENSE.
*/
-#include <rtems.h>
#include <bsp.h>
+#include <bsp/bootcard.h>
static void _noopfun(void) {}
void app_bsp_cleanup(void)
__attribute__(( weak, alias("_noopfun") ));
-void bsp_cleanup( void )
+void bsp_cleanup( uint32_t status )
{
app_bsp_cleanup();