Change macro name to IRQ_ENABLED.
[bertos.git] / drv / timer.c
index b25afba5cc53e75fb76777fa59f6f50f3afd6275..9148d930f2f39d5c6d0bd3d7a9a3669b24b5ed23 100644 (file)
@@ -173,9 +173,9 @@ Timer *timer_abort(Timer *timer)
  */
 void timer_delayTicks(ticks_t delay)
 {
-#if defined(IRQ_GETSTATE)
+#if defined(IRQ_ENABLED)
        /* We shouldn't sleep with interrupts disabled */
-       ASSERT(IRQ_GETSTATE());
+       ASSERT(IRQ_ENABLED());
 #endif
 
 #if defined(CONFIG_KERN_SIGNALS) && CONFIG_KERN_SIGNALS