STM3210E EVAL: Fix irq handler function type

This commit is contained in:
Mark Schulte 2017-03-01 08:57:13 -06:00 committed by Gregory Nutt
parent 585b1892c2
commit 8277cf2cff

View File

@ -159,7 +159,7 @@ static void stm32_alarmcb(void)
****************************************************************************/ ****************************************************************************/
#if defined(CONFIG_PM) && defined(CONFIG_RTC_ALARM) #if defined(CONFIG_PM) && defined(CONFIG_RTC_ALARM)
static int stm32_alarm_exti(int irq, FAR void *context) static int stm32_alarm_exti(int irq, FAR void *context, FAR void *arg)
{ {
stm32_alarmcb(); stm32_alarmcb();
return OK; return OK;