From c48cf0bd0c4577688f3c6c87acf63acdc789554d Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 11 Sep 2014 09:10:16 +0200 Subject: score: Rename _BSP_Exception_frame_print() Rename _BSP_Exception_frame_print() to _CPU_Exception_frame_print() to be in line with other CPU port functions. --- cpukit/score/cpu/mips/rtems/score/cpu.h | 9 +-------- cpukit/score/cpu/powerpc/rtems/score/cpu.h | 9 +-------- cpukit/score/cpu/sparc/rtems/score/cpu.h | 9 +-------- 3 files changed, 3 insertions(+), 24 deletions(-) (limited to 'cpukit/score/cpu') diff --git a/cpukit/score/cpu/mips/rtems/score/cpu.h b/cpukit/score/cpu/mips/rtems/score/cpu.h index 7fc639b520..c1bdc318c4 100644 --- a/cpukit/score/cpu/mips/rtems/score/cpu.h +++ b/cpukit/score/cpu/mips/rtems/score/cpu.h @@ -1137,14 +1137,7 @@ static inline void _CPU_Context_validate( uintptr_t pattern ) } } -void _BSP_Exception_frame_print( const CPU_Exception_frame *frame ); - -static inline void _CPU_Exception_frame_print( - const CPU_Exception_frame *frame -) -{ - _BSP_Exception_frame_print( frame ); -} +void _CPU_Exception_frame_print( const CPU_Exception_frame *frame ); /* The following routine swaps the endian format of an unsigned int. * It must be static because it is referenced indirectly. diff --git a/cpukit/score/cpu/powerpc/rtems/score/cpu.h b/cpukit/score/cpu/powerpc/rtems/score/cpu.h index bea2ec4ec2..2df961243b 100644 --- a/cpukit/score/cpu/powerpc/rtems/score/cpu.h +++ b/cpukit/score/cpu/powerpc/rtems/score/cpu.h @@ -1119,14 +1119,7 @@ typedef struct { PPC_GPR_TYPE GPR31; } CPU_Exception_frame; -void _BSP_Exception_frame_print( const CPU_Exception_frame *frame ); - -static inline void _CPU_Exception_frame_print( - const CPU_Exception_frame *frame -) -{ - _BSP_Exception_frame_print( frame ); -} +void _CPU_Exception_frame_print( const CPU_Exception_frame *frame ); /* * _CPU_Initialize_altivec() diff --git a/cpukit/score/cpu/sparc/rtems/score/cpu.h b/cpukit/score/cpu/sparc/rtems/score/cpu.h index 1cf2e9ac51..70d1785e54 100644 --- a/cpukit/score/cpu/sparc/rtems/score/cpu.h +++ b/cpukit/score/cpu/sparc/rtems/score/cpu.h @@ -1259,14 +1259,7 @@ typedef struct { CPU_Interrupt_frame *isf; } CPU_Exception_frame; -void _BSP_Exception_frame_print( const CPU_Exception_frame *frame ); - -static inline void _CPU_Exception_frame_print( - const CPU_Exception_frame *frame -) -{ - _BSP_Exception_frame_print( frame ); -} +void _CPU_Exception_frame_print( const CPU_Exception_frame *frame ); /** * @brief SPARC specific method to endian swap an uint32_t. -- cgit v1.2.3