summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-13 14:20:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-13 14:20:58 +0000
commit9b974cf42520581bc908415650c2701b4bf57550 (patch)
treefbbbf0d907d8a1c0a45da5a66e70e7b9e8543e69 /c
parent2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-9b974cf42520581bc908415650c2701b4bf57550.tar.bz2
2009-02-13 Joel Sherrill <joel.sherrill@OARcorp.com>
* new-exceptions/cpu.c: Correct prototype of _CPU_Initialize.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libcpu/powerpc/ChangeLog4
-rw-r--r--c/src/lib/libcpu/powerpc/new-exceptions/cpu.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/c/src/lib/libcpu/powerpc/ChangeLog b/c/src/lib/libcpu/powerpc/ChangeLog
index c786618c4f..b82d0be089 100644
--- a/c/src/lib/libcpu/powerpc/ChangeLog
+++ b/c/src/lib/libcpu/powerpc/ChangeLog
@@ -1,3 +1,7 @@
+2009-02-13 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * new-exceptions/cpu.c: Correct prototype of _CPU_Initialize.
+
2008-10-02 Sebastian Huber <sebastian.huber@embedded-brains.de>
* shared/include/powerpc-utility.h: Use constraint "b" for address
diff --git a/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c b/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c
index 06cdea064f..8008f3b5ea 100644
--- a/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c
+++ b/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c
@@ -39,13 +39,10 @@
*
* This routine performs processor dependent initialization.
*
- * INPUT PARAMETERS:
- * thread_dispatch - address of disptaching routine
+ * INPUT PARAMETERS: NONE
*/
-void _CPU_Initialize(
- void (*thread_dispatch) /* ignored on this CPU */
-)
+void _CPU_Initialize(void)
{
/* Do nothing */
}
@@ -55,7 +52,6 @@ void _CPU_Initialize(
* _CPU_Context_Initialize
*/
-
void _CPU_Context_Initialize(
Context_Control *the_context,
uint32_t *stack_base,