2009-02-13 Joel Sherrill <joel.sherrill@OARcorp.com>

* new-exceptions/cpu.c: Correct prototype of _CPU_Initialize.
This commit is contained in:
Joel Sherrill
2009-02-13 14:20:58 +00:00
parent 72f4b2468a
commit 9b974cf425
2 changed files with 6 additions and 6 deletions

View File

@@ -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> 2008-10-02 Sebastian Huber <sebastian.huber@embedded-brains.de>
* shared/include/powerpc-utility.h: Use constraint "b" for address * shared/include/powerpc-utility.h: Use constraint "b" for address

View File

@@ -39,13 +39,10 @@
* *
* This routine performs processor dependent initialization. * This routine performs processor dependent initialization.
* *
* INPUT PARAMETERS: * INPUT PARAMETERS: NONE
* thread_dispatch - address of disptaching routine
*/ */
void _CPU_Initialize( void _CPU_Initialize(void)
void (*thread_dispatch) /* ignored on this CPU */
)
{ {
/* Do nothing */ /* Do nothing */
} }
@@ -55,7 +52,6 @@ void _CPU_Initialize(
* _CPU_Context_Initialize * _CPU_Context_Initialize
*/ */
void _CPU_Context_Initialize( void _CPU_Context_Initialize(
Context_Control *the_context, Context_Control *the_context,
uint32_t *stack_base, uint32_t *stack_base,