From 9b974cf42520581bc908415650c2701b4bf57550 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 13 Feb 2009 14:20:58 +0000 Subject: 2009-02-13 Joel Sherrill * new-exceptions/cpu.c: Correct prototype of _CPU_Initialize. --- c/src/lib/libcpu/powerpc/ChangeLog | 4 ++++ c/src/lib/libcpu/powerpc/new-exceptions/cpu.c | 8 ++------ 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 + + * new-exceptions/cpu.c: Correct prototype of _CPU_Initialize. + 2008-10-02 Sebastian Huber * 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, -- cgit v1.2.3