mirror of
https://github.com/apache/nuttx.git
synced 2026-09-21 13:25:12 +08: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:
committed by
Gregory Nutt
parent
13560d6fa3
commit
0cbbab7a4a
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user