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
@ -112,7 +112,7 @@ static const struct file_operations i2cdrvr_fops =
|
|||||||
i2cdrvr_read, /* read */
|
i2cdrvr_read, /* read */
|
||||||
i2cdrvr_write, /* write */
|
i2cdrvr_write, /* write */
|
||||||
NULL, /* seek */
|
NULL, /* seek */
|
||||||
i2cdrvr_ioctl /* ioctl */
|
i2cdrvr_ioctl, /* ioctl */
|
||||||
NULL /* poll */
|
NULL /* poll */
|
||||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||||
, i2cdrvr_unlink /* unlink */
|
, i2cdrvr_unlink /* unlink */
|
||||||
|
Loading…
Reference in New Issue
Block a user