More missing arguments to interrupt handling.
This commit is contained in:
parent
67de2e5f66
commit
d9fec7fe4c
@ -275,7 +275,7 @@ static int sam34_interrupt(int irq, FAR void *context, FAR void *arg)
|
||||
* upon return.
|
||||
*/
|
||||
|
||||
priv->handler(irq, context);
|
||||
priv->handler(irq, context, NULL);
|
||||
}
|
||||
|
||||
/* The EWI interrupt is cleared by the WDT_SR register. */
|
||||
|
@ -90,7 +90,7 @@ static int up_lcdextcominisr(int irq, void *context)
|
||||
return OK;
|
||||
}
|
||||
|
||||
return g_isr(irq, context);
|
||||
return g_isr(irq, context, NULL);
|
||||
}
|
||||
|
||||
static int up_lcdirqattach(xcpt_t isr)
|
||||
|
@ -1,5 +1,5 @@
|
||||
/************************************************************************************
|
||||
* configs/sam4s-xplained-pro/src/up_watchdog.c
|
||||
* configs/sam4s-xplained-pro/src/up_wdt.c
|
||||
*
|
||||
* Copyright (C) 2014, 2016 Gregory Nutt. All rights reserved.
|
||||
* Authors: Gregory Nutt <gnutt@nuttx.org>
|
||||
|
Loading…
Reference in New Issue
Block a user