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 f2c661f7e1
commit 8e5ae2ee18
2 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ void efm32_gpioirqinitialize(void)
/* Attach the even and odd interrupt handlers */ /* 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)); DEBUGVERIFY(irq_attach(EFM32_IRQ_GPIO_ODD, efm32_odd_interrupt));
/* Enable GPIO even and odd interrupts at the NVIC */ /* Enable GPIO even and odd interrupts at the NVIC */

View File

@ -295,7 +295,7 @@ void udp_free(FAR struct udp_conn_s *conn)
* *
* Description: * Description:
* Find a connection structure that is the appropriate * Find a connection structure that is the appropriate
* connection to be used within the provided TCP/IP header * connection to be used within the provided UDP header
* *
* Assumptions: * Assumptions:
* This function is called from UIP logic at interrupt level * This function is called from UIP logic at interrupt level