From fa3993d92db984a19b11d7030b074d0332f0a406 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 18 Mar 2014 10:56:17 +0100 Subject: [PATCH] score: Make _ISR_Enable_without_giant() available Make _ISR_Enable_without_giant() available for non-SMP configurations. --- cpukit/score/include/rtems/score/isrlevel.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cpukit/score/include/rtems/score/isrlevel.h b/cpukit/score/include/rtems/score/isrlevel.h index 137103e464..94d1e917b5 100644 --- a/cpukit/score/include/rtems/score/isrlevel.h +++ b/cpukit/score/include/rtems/score/isrlevel.h @@ -142,16 +142,12 @@ typedef uint32_t ISR_Level; RTEMS_COMPILER_MEMORY_BARRIER(); \ } while (0) -#if defined( RTEMS_SMP ) - #define _ISR_Enable_without_giant( _level ) \ do { \ RTEMS_COMPILER_MEMORY_BARRIER(); \ _CPU_ISR_Enable( _level ); \ } while (0) -#endif /* defined( RTEMS_SMP ) */ - /**@}*/ #ifdef __cplusplus