summaryrefslogtreecommitdiff
path: root/nuttx/examples/pashello/device.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/examples/pashello/device.c')
-rw-r--r--nuttx/examples/pashello/device.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuttx/examples/pashello/device.c b/nuttx/examples/pashello/device.c
index b6db1db5c..fb2deff65 100644
--- a/nuttx/examples/pashello/device.c
+++ b/nuttx/examples/pashello/device.c
@@ -68,7 +68,8 @@ static struct file_operations hello_fops =
hello_read, /* read */
0, /* write */
0, /* seek */
- 0 /* ioctl */
+ 0, /* ioctl */
+ 0 /* poll */
};
/****************************************************************************