summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/system.h b/firmware/system.h
index 2947fdc1ab..b65358d415 100644
--- a/firmware/system.h
+++ b/firmware/system.h
@@ -230,8 +230,6 @@ static inline void cli (void)
230 asm volatile ("ldc\t%0,sr" : : "r"(15<<4)); 230 asm volatile ("ldc\t%0,sr" : : "r"(15<<4));
231 } 231 }
232 232
233#endif
234
235/* Compare And Swap */ 233/* Compare And Swap */
236static inline int cas (volatile int *pointer,int requested_value,int new_value) 234static inline int cas (volatile int *pointer,int requested_value,int new_value)
237 { 235 {
@@ -260,6 +258,8 @@ static inline int cas2 (volatile int *pointer1,volatile int *pointer2,int reques
260 return 0; 258 return 0;
261 } 259 }
262 260
261#endif
262
263extern void system_reboot (void); 263extern void system_reboot (void);
264extern void system_init(void); 264extern void system_init(void);
265 265