From ff54112f82d223c2448b5bd5a8e8b1fa63e1a6d5 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Tue, 9 Oct 2018 14:52:33 +0200 Subject: [PATCH] efm32: mark closing #endif for MODULE_PERIPH_GPIO_IRQ --- cpu/efm32/periph/gpio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/efm32/periph/gpio.c b/cpu/efm32/periph/gpio.c index f1bce06fe9..76d0e92213 100644 --- a/cpu/efm32/periph/gpio.c +++ b/cpu/efm32/periph/gpio.c @@ -37,7 +37,7 @@ * @brief Hold one interrupt context per interrupt line */ static gpio_isr_ctx_t isr_ctx[NUMOF_IRQS]; -#endif +#endif /* MODULE_PERIPH_GPIO_IRQ */ static inline GPIO_Port_TypeDef _port_num(gpio_t pin) { @@ -173,4 +173,4 @@ void isr_gpio_odd(void) { gpio_irq(); } -#endif +#endif /* MODULE_PERIPH_GPIO_IRQ */