summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-10 21:35:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-10 21:35:37 +0000
commit4909a30e6329ddb3beff3145939bdc82d8c4dc80 (patch)
tree82eb6284dca61d6a5934d0bbcdbee63e66d56064 /c/src/lib/libbsp/sh
parent2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-4909a30e6329ddb3beff3145939bdc82d8c4dc80.tar.bz2
2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* 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.
Diffstat (limited to 'c/src/lib/libbsp/sh')
-rw-r--r--c/src/lib/libbsp/sh/gensh1/ChangeLog6
-rw-r--r--c/src/lib/libbsp/sh/gensh1/include/bsp.h4
-rw-r--r--c/src/lib/libbsp/sh/gensh4/ChangeLog6
-rw-r--r--c/src/lib/libbsp/sh/gensh4/include/bsp.h4
-rw-r--r--c/src/lib/libbsp/sh/shsim/ChangeLog6
-rw-r--r--c/src/lib/libbsp/sh/shsim/include/bsp.h4
-rw-r--r--c/src/lib/libbsp/sh/simsh4/ChangeLog6
-rw-r--r--c/src/lib/libbsp/sh/simsh4/include/bsp.h4
8 files changed, 24 insertions, 16 deletions
diff --git a/c/src/lib/libbsp/sh/gensh1/ChangeLog b/c/src/lib/libbsp/sh/gensh1/ChangeLog
index 6a7d97c6c6..c7840d1a45 100644
--- a/c/src/lib/libbsp/sh/gensh1/ChangeLog
+++ b/c/src/lib/libbsp/sh/gensh1/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * 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.
+
2008-05-15 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Add capability for bootcard.c BSP Initialization
diff --git a/c/src/lib/libbsp/sh/gensh1/include/bsp.h b/c/src/lib/libbsp/sh/gensh1/include/bsp.h
index 5c1659459e..2bb932c286 100644
--- a/c/src/lib/libbsp/sh/gensh1/include/bsp.h
+++ b/c/src/lib/libbsp/sh/gensh1/include/bsp.h
@@ -68,10 +68,6 @@ extern uint32_t WorkSpaceEnd ;
extern void *CPU_Interrupt_stack_low ;
extern void *CPU_Interrupt_stack_high ;
-/* miscellaneous stuff assumed to exist */
-
-extern void bsp_cleanup( void );
-
/*
* Device Driver Table Entries
*/
diff --git a/c/src/lib/libbsp/sh/gensh4/ChangeLog b/c/src/lib/libbsp/sh/gensh4/ChangeLog
index e4324be235..ffd2a5c8b2 100644
--- a/c/src/lib/libbsp/sh/gensh4/ChangeLog
+++ b/c/src/lib/libbsp/sh/gensh4/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * 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.
+
2008-05-15 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Add capability for bootcard.c BSP Initialization
diff --git a/c/src/lib/libbsp/sh/gensh4/include/bsp.h b/c/src/lib/libbsp/sh/gensh4/include/bsp.h
index c6c108602a..b2ab4a865f 100644
--- a/c/src/lib/libbsp/sh/gensh4/include/bsp.h
+++ b/c/src/lib/libbsp/sh/gensh4/include/bsp.h
@@ -80,10 +80,6 @@ extern uint32_t boot_mode;
#define SH4_BOOT_MODE_FLASH 0
#define SH4_BOOT_MODE_IPL 1
-/* miscellaneous stuff assumed to exist */
-
-extern void bsp_cleanup( void );
-
/*
* Device Driver Table Entries
*/
diff --git a/c/src/lib/libbsp/sh/shsim/ChangeLog b/c/src/lib/libbsp/sh/shsim/ChangeLog
index 4583d1f1bb..6b3c70d6e7 100644
--- a/c/src/lib/libbsp/sh/shsim/ChangeLog
+++ b/c/src/lib/libbsp/sh/shsim/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * 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.
+
2008-08-19 Ralf Corsépius <ralf.corsepius@rtems.org>
* trap34/console-io.c: Add missing prototypes.
diff --git a/c/src/lib/libbsp/sh/shsim/include/bsp.h b/c/src/lib/libbsp/sh/shsim/include/bsp.h
index 5f95d4f465..9644fcdcae 100644
--- a/c/src/lib/libbsp/sh/shsim/include/bsp.h
+++ b/c/src/lib/libbsp/sh/shsim/include/bsp.h
@@ -64,10 +64,6 @@ extern uint32_t WorkSpaceEnd ;
extern void *CPU_Interrupt_stack_low ;
extern void *CPU_Interrupt_stack_high ;
-/* miscellaneous stuff assumed to exist */
-
-extern void bsp_cleanup( void );
-
/*
* Device Driver Table Entries
*/
diff --git a/c/src/lib/libbsp/sh/simsh4/ChangeLog b/c/src/lib/libbsp/sh/simsh4/ChangeLog
index 0c7941a49e..a70bfe9129 100644
--- a/c/src/lib/libbsp/sh/simsh4/ChangeLog
+++ b/c/src/lib/libbsp/sh/simsh4/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * 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.
+
2008-09-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* clock/ckinit.c: The Shared Memory Driver no longer requires the
diff --git a/c/src/lib/libbsp/sh/simsh4/include/bsp.h b/c/src/lib/libbsp/sh/simsh4/include/bsp.h
index 4e3081ad21..87cec03c6b 100644
--- a/c/src/lib/libbsp/sh/simsh4/include/bsp.h
+++ b/c/src/lib/libbsp/sh/simsh4/include/bsp.h
@@ -85,10 +85,6 @@ extern uint32_t WorkSpaceEnd ;
extern void *CPU_Interrupt_stack_low ;
extern void *CPU_Interrupt_stack_high ;
-/* miscellaneous stuff assumed to exist */
-
-extern void bsp_cleanup( void );
-
/*
* Device Driver Table Entries
*/