summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf5206elite
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-10 21:35:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-10 21:35:06 +0000
commit05adba6b126c1abffce4eee25bf0dc0e1d15b9e6 (patch)
tree4a5d31ce4e192b939bc1ad42be844cba1ff76855 /c/src/lib/libbsp/m68k/mcf5206elite
parent2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-05adba6b126c1abffce4eee25bf0dc0e1d15b9e6.tar.bz2
2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, include/bsp.h: Review of all bsp_cleanup() implementations. In this phase, all prototypes were removed from bsp.h and empty implementations were removed and made to use the shared stub. * startup/bspclean.c: Removed.
Diffstat (limited to 'c/src/lib/libbsp/m68k/mcf5206elite')
-rw-r--r--c/src/lib/libbsp/m68k/mcf5206elite/ChangeLog8
-rw-r--r--c/src/lib/libbsp/m68k/mcf5206elite/Makefile.am2
-rw-r--r--c/src/lib/libbsp/m68k/mcf5206elite/include/bsp.h2
-rw-r--r--c/src/lib/libbsp/m68k/mcf5206elite/startup/bspclean.c37
4 files changed, 9 insertions, 40 deletions
diff --git a/c/src/lib/libbsp/m68k/mcf5206elite/ChangeLog b/c/src/lib/libbsp/m68k/mcf5206elite/ChangeLog
index 948f2cee0c..6eea7c971d 100644
--- a/c/src/lib/libbsp/m68k/mcf5206elite/ChangeLog
+++ b/c/src/lib/libbsp/m68k/mcf5206elite/ChangeLog
@@ -1,3 +1,11 @@
+2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile.am, include/bsp.h: Review of all bsp_cleanup()
+ implementations. In this phase, all prototypes were removed from
+ bsp.h and empty implementations were removed and made to use the
+ shared stub.
+ * startup/bspclean.c: Removed.
+
2008-09-08 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* i2c/i2c.c, i2c/i2cdrv.c, include/i2c.h:
diff --git a/c/src/lib/libbsp/m68k/mcf5206elite/Makefile.am b/c/src/lib/libbsp/m68k/mcf5206elite/Makefile.am
index d53cd1e366..dacfa0a2f4 100644
--- a/c/src/lib/libbsp/m68k/mcf5206elite/Makefile.am
+++ b/c/src/lib/libbsp/m68k/mcf5206elite/Makefile.am
@@ -36,7 +36,7 @@ project_lib_DATA = start.$(OBJEXT)
dist_project_lib_DATA += startup/linkcmds startup/gdbinit \
startup/linkcmds.flash
-startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
+startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
../../shared/bsppredriverhook.c \
../../shared/bsppost.c ../../m68k/shared/m68kpretaskinghook.c \
startup/bspstart.c startup/init5206e.c ../../shared/bootcard.c \
diff --git a/c/src/lib/libbsp/m68k/mcf5206elite/include/bsp.h b/c/src/lib/libbsp/m68k/mcf5206elite/include/bsp.h
index 08354f60cf..77f7c3bf64 100644
--- a/c/src/lib/libbsp/m68k/mcf5206elite/include/bsp.h
+++ b/c/src/lib/libbsp/m68k/mcf5206elite/include/bsp.h
@@ -211,8 +211,6 @@ extern rtems_isr (*rtems_clock_hook)(rtems_vector_number);
/* functions */
-void bsp_cleanup( void );
-
m68k_isr_entry set_vector(
rtems_isr_entry handler,
rtems_vector_number vector,
diff --git a/c/src/lib/libbsp/m68k/mcf5206elite/startup/bspclean.c b/c/src/lib/libbsp/m68k/mcf5206elite/startup/bspclean.c
deleted file mode 100644
index 4fb551e228..0000000000
--- a/c/src/lib/libbsp/m68k/mcf5206elite/startup/bspclean.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * MCF5206eLITE bsp_cleanup
- *
- * This routine returns control from RTEMS to the dBUG monitor.
- *
- * Copyright (C) 2000 OKTET Ltd., St.-Petersburg, Russia.
- * Author: Victor V. Vengerov <vvv@oktet.ru>
- *
- * COPYRIGHT (c) 1989-1998.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- *
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems.h>
-#include <bsp.h>
-
-/* bsp_cleanup --
- * This function called when RTEMS execution is finished. bsp_cleanup
- * for MCF5206eLITE evaluation board throw execution to the dBUG
- * monitor.
- *
- * PARAMETERS:
- * none
- *
- * RETURNS:
- * none
- */
-void
-bsp_cleanup(void)
-{
-}