drivers/eeprom/i2c_xx24xx.c, drivers/pwm/pwm.c: More missing commas from CONFIG_DISABLE_POLL removal

This commit is contained in:
Juha Niskanen (Haltian) 2019-05-22 07:15:11 -06:00 committed by Gregory Nutt
parent 0cbbab7a4a
commit 6312d49e25
2 changed files with 2 additions and 2 deletions

View File

@ -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 */
};

View File

@ -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 */
};