Use Context_Control_fp* instead of void* for fp_contexts.

This commit is contained in:
Ralf Corsepius
2007-04-17 06:25:44 +00:00
parent 8ea0d7dabd
commit 74732fa3d9
3 changed files with 6 additions and 6 deletions

View File

@@ -138,7 +138,7 @@ unsigned int sh_set_irq_priority(
*/
void _CPU_Context_save_fp(
void **fp_context_ptr
Context_Control_fp **fp_context_ptr
)
{
}
@@ -157,7 +157,7 @@ void _CPU_Context_save_fp(
*/
void _CPU_Context_restore_fp(
void **fp_context_ptr
Context_Control_fp **fp_context_ptr
)
{
}

View File

@@ -140,7 +140,7 @@ unsigned int sh_set_irq_priority(
*/
void _CPU_Context_save_fp(
void **fp_context_ptr
Context_Control_fp **fp_context_ptr
)
{
}
@@ -159,7 +159,7 @@ void _CPU_Context_save_fp(
*/
void _CPU_Context_restore_fp(
void **fp_context_ptr
Context_Control_fp **fp_context_ptr
)
{
}

View File

@@ -64,7 +64,7 @@ register unsigned long *stack_ptr asm("r15");
*/
void _CPU_Context_save_fp(
void **fp_context_ptr /* r4 */
Context_Control_fp **fp_context_ptr /* r4 */
)
{
#if SH_HAS_FPU
@@ -121,7 +121,7 @@ asm volatile("\n\
*/
void _CPU_Context_restore_fp(
void **fp_context_ptr /* r4 */
Context_Control_fp **fp_context_ptr /* r4 */
)
{
#if SH_HAS_FPU