From dfd2701f971d2bbc3da5fdc3c945176cc7f39a38 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 22 May 2019 08:23:59 -0600 Subject: [PATCH] audio/audio.c: Yet another missing comma from big CONFIG_DISABLE_POLL removal. --- audio/audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/audio.c b/audio/audio.c index 81bbe27eeb..25371770f8 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -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 */ };