SAMA5D4-EK: Eliminate warning. Correct type of return value.

This commit is contained in:
Gregory Nutt 2017-03-05 14:20:11 -06:00
parent d303627fe5
commit c368c67090

View File

@ -50,6 +50,7 @@
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include <errno.h>
#include <debug.h> #include <debug.h>
#include <nuttx/irq.h> #include <nuttx/irq.h>
@ -262,7 +263,7 @@ int arch_phy_irq(FAR const char *intf, xcpt_t handler, void *arg,
#endif #endif
{ {
nerr("ERROR: Unsupported interface: %s\n", intf); nerr("ERROR: Unsupported interface: %s\n", intf);
return NULL; return -EINVAL;
} }
/* Disable interrupts until we are done. This guarantees that the /* Disable interrupts until we are done. This guarantees that the