From 06ce1a2291d4af39449370ee773cd25308ca3ea6 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 3 Mar 2017 14:39:35 -0600 Subject: [PATCH] Add missing endif --- include/nuttx/irq.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/nuttx/irq.h b/include/nuttx/irq.h index c194d82fdc..a4bb107a23 100644 --- a/include/nuttx/irq.h +++ b/include/nuttx/irq.h @@ -57,7 +57,7 @@ * is equivalent to setting a NULL interrupt handler. */ -# define irq_detach(isr) irq_attach(isr, NULL, NULL) +# define irq_detach(isr) irq_attach(isr, NULL, NULL) /* Maximum/minimum values of IRQ integer types */ @@ -76,6 +76,7 @@ # define IRQMAPPED_MAX UINT16_MAX # else # define IRQMAPPED_MAX UINT32_MAX +# endif # endif #endif /* __ASSEMBLY__ */