diff --git a/arch/sim/src/up_devconsole.c b/arch/sim/src/up_devconsole.c index 89eb33c33e9..7e6cdf20b28 100644 --- a/arch/sim/src/up_devconsole.c +++ b/arch/sim/src/up_devconsole.c @@ -54,7 +54,7 @@ static ssize_t devconsole_read(struct file *, char *, size_t); static ssize_t devconsole_write(struct file *, const char *, size_t); #ifndef CONFIG_DISABLE_POLL -static int devconsole_poll(FAR struct file *filep, FAR struct pollfd *fds); +static int devconsole_poll(FAR struct file *filep, FAR struct pollfd *fds, boolean setup); #endif /**************************************************************************** @@ -85,7 +85,7 @@ static ssize_t devconsole_write(struct file *filp, const char *buffer, size_t le } #ifndef CONFIG_DISABLE_POLL -static int devconsole_poll(FAR struct file *filep, FAR struct pollfd *fds) +static int devconsole_poll(FAR struct file *filep, FAR struct pollfd *fds, boolean setup) { return OK; }