1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

stm32_common: mark closing #endif for MODULE_PERIPH_GPIO_IRQ

This commit is contained in:
Martine Lenders 2018-10-09 14:59:47 +02:00
parent 98ddcdc783
commit 92c5a7824a

View File

@ -44,7 +44,7 @@
* @brief Allocate memory for one callback and argument per EXTI channel
*/
static gpio_isr_ctx_t isr_ctx[EXTI_NUMOF];
#endif
#endif /* MODULE_PERIPH_GPIO_IRQ */
/**
* @brief Extract the port base address from the given pin identifier
@ -248,7 +248,7 @@ void isr_exti(void)
}
cortexm_isr_end();
}
#endif
#endif /* MODULE_PERIPH_GPIO_IRQ */
#else
typedef int dont_be_pedantic;