mirror of
https://github.com/apache/nuttx.git
synced 2026-08-12 16:06:51 +00:00
drivers/i2c/i2c_driver.c: Fix build error due to missing comma introduced when CONFIG_DISABLE_POLL was removed.
This commit is contained in:
parent
13560d6fa3
commit
0cbbab7a4a
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ static const struct file_operations i2cdrvr_fops =
|
|||
i2cdrvr_read, /* read */
|
||||
i2cdrvr_write, /* write */
|
||||
NULL, /* seek */
|
||||
i2cdrvr_ioctl /* ioctl */
|
||||
i2cdrvr_ioctl, /* ioctl */
|
||||
NULL /* poll */
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
, i2cdrvr_unlink /* unlink */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue