drivers/eeprom/i2c_xx24xx.c, drivers/pwm/pwm.c: More missing commas from CONFIG_DISABLE_POLL removal
This commit is contained in:
parent
0cbbab7a4a
commit
6312d49e25
|
@ -206,7 +206,7 @@ static const struct file_operations ee24xx_fops =
|
|||
ee24xx_read, /* read */
|
||||
ee24xx_write, /* write */
|
||||
ee24xx_seek, /* seek */
|
||||
ee24xx_ioctl /* ioctl */
|
||||
ee24xx_ioctl, /* ioctl */
|
||||
NULL /* poll */
|
||||
};
|
||||
|
||||
|
|
|
@ -110,7 +110,7 @@ static const struct file_operations g_pwmops =
|
|||
pwm_read, /* read */
|
||||
pwm_write, /* write */
|
||||
NULL, /* seek */
|
||||
pwm_ioctl /* ioctl */
|
||||
pwm_ioctl, /* ioctl */
|
||||
NULL /* poll */
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue