[PATCH 03/13] sh: Avoid SCORE_EXTERN

Sebastian Huber sebastian.huber at embedded-brains.de
Thu Feb 4 06:37:33 UTC 2016


Update #2559.
---
 cpukit/score/cpu/sh/cpu.c             | 6 ++++++
 cpukit/score/cpu/sh/rtems/score/cpu.h | 6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/cpukit/score/cpu/sh/cpu.c b/cpukit/score/cpu/sh/cpu.c
index 2b41e78..d6e2d17 100644
--- a/cpukit/score/cpu/sh/cpu.c
+++ b/cpukit/score/cpu/sh/cpu.c
@@ -43,6 +43,10 @@ proc_ptr vectab[256] ;
 
 extern proc_ptr _Hardware_isr_Table[];
 
+#if SH_HAS_FPU
+Context_Control_fp _CPU_Null_fp_context;
+#endif
+
 /*  _CPU_Initialize
  *
  *  This routine performs processor dependent initialization.
@@ -62,6 +66,7 @@ void _CPU_Initialize(void)
    */
 
   /* FP context initialization support goes here */
+#if SH_HAS_FPU
   /* FIXME: When not to use SH4_FPSCR_PR ? */
 #ifdef __SH4__
   _CPU_Null_fp_context.fpscr = SH4_FPSCR_DN | SH4_FPSCR_RM | SH4_FPSCR_PR;
@@ -70,6 +75,7 @@ void _CPU_Initialize(void)
   /* FIXME: Wild guess :) */
   _CPU_Null_fp_context.fpscr = SH4_FPSCR_DN | SH4_FPSCR_RM;
 #endif
+#endif
 
   /* enable interrupts */
   _CPU_ISR_Set_level( level ) ;
diff --git a/cpukit/score/cpu/sh/rtems/score/cpu.h b/cpukit/score/cpu/sh/rtems/score/cpu.h
index 43d1915..2bddba7 100644
--- a/cpukit/score/cpu/sh/rtems/score/cpu.h
+++ b/cpukit/score/cpu/sh/rtems/score/cpu.h
@@ -371,7 +371,7 @@ typedef struct {
  */
 
 #if SH_HAS_FPU
-SCORE_EXTERN Context_Control_fp  _CPU_Null_fp_context;
+extern Context_Control_fp _CPU_Null_fp_context;
 #endif
 
 /*
@@ -379,7 +379,7 @@ SCORE_EXTERN Context_Control_fp  _CPU_Null_fp_context;
  */
 
 /* XXX: if needed, put more variables here */
-SCORE_EXTERN void CPU_delay( uint32_t   microseconds );
+void CPU_delay( uint32_t   microseconds );
 
 /*
  *  The size of the floating point context area.  On some CPUs this
@@ -558,7 +558,7 @@ uint32_t   _CPU_ISR_Get_level( void );
 /*
  * FIXME: defined as a function for debugging - should be a macro
  */
-SCORE_EXTERN void _CPU_Context_Initialize(
+void _CPU_Context_Initialize(
   Context_Control       *_the_context,
   void                  *_stack_base,
   uint32_t              _size,
-- 
1.8.4.5



More information about the devel mailing list