summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/csb360
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/csb360
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/csb360')
-rw-r--r--c/src/lib/libbsp/m68k/csb360/ChangeLog8
-rw-r--r--c/src/lib/libbsp/m68k/csb360/Makefile.am2
-rw-r--r--c/src/lib/libbsp/m68k/csb360/include/bsp.h2
-rw-r--r--c/src/lib/libbsp/m68k/csb360/startup/bspclean.c37
4 files changed, 9 insertions, 40 deletions
diff --git a/c/src/lib/libbsp/m68k/csb360/ChangeLog b/c/src/lib/libbsp/m68k/csb360/ChangeLog
index 23549f0da3..55a6f32679 100644
--- a/c/src/lib/libbsp/m68k/csb360/ChangeLog
+++ b/c/src/lib/libbsp/m68k/csb360/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-08-19 Ralf Corsépius <ralf.corsepius@rtems.org>
* startup/init5272.c: Add missing prototypes.
diff --git a/c/src/lib/libbsp/m68k/csb360/Makefile.am b/c/src/lib/libbsp/m68k/csb360/Makefile.am
index 8ea9d104ba..428a8d00c0 100644
--- a/c/src/lib/libbsp/m68k/csb360/Makefile.am
+++ b/c/src/lib/libbsp/m68k/csb360/Makefile.am
@@ -28,7 +28,7 @@ project_lib_DATA = start.$(OBJEXT)
dist_project_lib_DATA += startup/linkcmds
-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/init5272.c ../../shared/bootcard.c \
diff --git a/c/src/lib/libbsp/m68k/csb360/include/bsp.h b/c/src/lib/libbsp/m68k/csb360/include/bsp.h
index e391b90ed5..7512e76090 100644
--- a/c/src/lib/libbsp/m68k/csb360/include/bsp.h
+++ b/c/src/lib/libbsp/m68k/csb360/include/bsp.h
@@ -181,8 +181,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/csb360/startup/bspclean.c b/c/src/lib/libbsp/m68k/csb360/startup/bspclean.c
deleted file mode 100644
index 0a76b782d6..0000000000
--- a/c/src/lib/libbsp/m68k/csb360/startup/bspclean.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * CSB360 cleanu code.
- *
- * 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)
-{
-}