diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-12-10 09:11:40 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-12-11 09:25:32 +0300 |
commit | 9fafc5259b430e9f2d3900dc163e9d22a4b56c86 (patch) | |
tree | 65b86dfb448659fc00e719719748708df39a6c16 /sound/sh/aica.c | |
parent | 5b6e996a6218eb91b8b44c3821b3ae109e9aca52 (diff) | |
download | linux-9fafc5259b430e9f2d3900dc163e9d22a4b56c86.tar.xz |
ALSA: sh: Drop superfluous ioctl PCM ops
PCM core deals the empty ioctl field now as default(*).
Let's kill the redundant lines.
(*) commit fc033cbf6fb7 ("ALSA: pcm: Allow NULL ioctl ops")
Link: https://lore.kernel.org/r/20191210061145.24641-19-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/sh/aica.c')
-rw-r--r-- | sound/sh/aica.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/sh/aica.c b/sound/sh/aica.c index 8ff88d71439e..f3cd12ff09c3 100644 --- a/sound/sh/aica.c +++ b/sound/sh/aica.c @@ -399,7 +399,6 @@ static unsigned long snd_aicapcm_pcm_pointer(struct snd_pcm_substream static const struct snd_pcm_ops snd_aicapcm_playback_ops = { .open = snd_aicapcm_pcm_open, .close = snd_aicapcm_pcm_close, - .ioctl = snd_pcm_lib_ioctl, .prepare = snd_aicapcm_pcm_prepare, .trigger = snd_aicapcm_pcm_trigger, .pointer = snd_aicapcm_pcm_pointer, |