Olimexino STM32: Fix irq handler function signature

This commit is contained in:
Mark Schulte
2017-03-01 08:55:26 -06:00
committed by Gregory Nutt
parent df0a05c682
commit 585b1892c2
+1 -1
View File
@@ -58,7 +58,7 @@
************************************************************************************/ ************************************************************************************/
#if defined(CONFIG_USBDEV) #if defined(CONFIG_USBDEV)
static int vbus_handler(int irq, FAR void *context) static int vbus_handler(int irq, FAR void *context, FAR void *arg)
{ {
return OK; return OK;
} }