EFM32: Fix typo in connecting ODD GPIO interrupt. Noted by Pierre

This commit is contained in:
Gregory Nutt 2014-11-08 06:18:21 -06:00
parent 070694a71f
commit b96654347b

View File

@ -172,7 +172,7 @@ void efm32_gpioirqinitialize(void)
/* Attach the even and odd interrupt handlers */
DEBUGVERIFY(irq_attach(EFM32_IRQ_GPIO_ODD, efm32_even_interrupt));
DEBUGVERIFY(irq_attach(EFM32_IRQ_GPIO_EVEN, efm32_even_interrupt));
DEBUGVERIFY(irq_attach(EFM32_IRQ_GPIO_ODD, efm32_odd_interrupt));
/* Enable GPIO even and odd interrupts at the NVIC */