From 9e0abe51a1f0739e39b0b86d7ad2356f00152bc8 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 17 Apr 2007 05:05:39 +0000 Subject: Use Context_Control_fp* instead of void* for fp_contexts. Eliminate evil casts. --- cpukit/score/cpu/avr/rtems/score/cpu.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/cpu/avr') diff --git a/cpukit/score/cpu/avr/rtems/score/cpu.h b/cpukit/score/cpu/avr/rtems/score/cpu.h index c614ea8342..10ad45fd03 100644 --- a/cpukit/score/cpu/avr/rtems/score/cpu.h +++ b/cpukit/score/cpu/avr/rtems/score/cpu.h @@ -817,7 +817,7 @@ uint32_t _CPU_ISR_Get_level( void ); #define _CPU_Context_Initialize_fp( _destination ) \ { \ - *((Context_Control_fp *) *((void **) _destination)) = _CPU_Null_fp_context; \ + *(*(_destination)) = _CPU_Null_fp_context; \ } /* end of Context handler macros */ @@ -1075,7 +1075,7 @@ void _CPU_Context_restore( */ void _CPU_Context_save_fp( - void **fp_context_ptr + Context_Control_fp **fp_context_ptr ); /* @@ -1089,7 +1089,7 @@ void _CPU_Context_save_fp( */ void _CPU_Context_restore_fp( - void **fp_context_ptr + Context_Control_fp **fp_context_ptr ); /* The following routine swaps the endian format of an unsigned int. -- cgit v1.2.3