audio/audio.c: Yet another missing comma from big CONFIG_DISABLE_POLL removal.

This commit is contained in:
Gregory Nutt 2019-05-22 08:23:59 -06:00
parent 4104a93aa2
commit dfd2701f97
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ static const struct file_operations g_audioops =
audio_read, /* read */
audio_write, /* write */
NULL, /* seek */
audio_ioctl /* ioctl */
audio_ioctl, /* ioctl */
NULL /* poll */
};