apps/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.

This commit is contained in:
Gregory Nutt
2019-05-21 19:08:12 -06:00
parent b7b3dfb58b
commit dd35a7cacc
20 changed files with 28 additions and 61 deletions

View File

@@ -79,17 +79,15 @@ static ssize_t chardev_write(FAR struct file *filep, FAR const char *buffer,
static const struct file_operations chardev_fops =
{
0, /* open */
0, /* close */
NULL, /* open */
NULL, /* close */
chardev_read, /* read */
chardev_write, /* write */
0, /* seek */
0 /* ioctl */
#ifndef CONFIG_DISABLE_POLL
, 0 /* poll */
#endif
NULL, /* seek */
NULL, /* ioctl */
NULL /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, 0 /* unlink */
, NULL /* unlink */
#endif
};