mirror of
https://github.com/apache/nuttx.git
synced 2026-05-29 20:56:47 +08:00
Needs conditional compilation for POLL disabled
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1273 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -85,8 +85,10 @@ struct file_operations bch_fops =
|
||||
bch_read, /* read */
|
||||
bch_write, /* write */
|
||||
0, /* seek */
|
||||
bch_ioctl, /* ioctl */
|
||||
0 /* poll */
|
||||
bch_ioctl /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, 0 /* poll */
|
||||
#endif
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
||||
Reference in New Issue
Block a user