EFM32: Fix typo in connecting ODD GPIO interrupt. Noted by Pierre
This commit is contained in:
parent
f2c661f7e1
commit
8e5ae2ee18
@ -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 */
|
||||
|
@ -295,7 +295,7 @@ void udp_free(FAR struct udp_conn_s *conn)
|
||||
*
|
||||
* Description:
|
||||
* 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:
|
||||
* This function is called from UIP logic at interrupt level
|
||||
|
Loading…
Reference in New Issue
Block a user