diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-12-10 07:11:42 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-12-11 07:25:33 +0100 |
commit | 6bddc9ef588555a9ed25c735fa8b277d966df78a (patch) | |
tree | 5999bb044af826eae48c3251712a6b032740697c /sound/spi/at73c213.c | |
parent | 5fcd1aeee587f6582e66572d12fb0b9c4c2583fb (diff) | |
download | linux-stable-6bddc9ef588555a9ed25c735fa8b277d966df78a.tar.gz linux-stable-6bddc9ef588555a9ed25c735fa8b277d966df78a.tar.bz2 linux-stable-6bddc9ef588555a9ed25c735fa8b277d966df78a.zip |
ALSA: spi: 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-21-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/spi/at73c213.c')
-rw-r--r-- | sound/spi/at73c213.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/spi/at73c213.c b/sound/spi/at73c213.c index 8b1b5c86cebf..77563baf7a8f 100644 --- a/sound/spi/at73c213.c +++ b/sound/spi/at73c213.c @@ -316,7 +316,6 @@ snd_at73c213_pcm_pointer(struct snd_pcm_substream *substream) static const struct snd_pcm_ops at73c213_playback_ops = { .open = snd_at73c213_pcm_open, .close = snd_at73c213_pcm_close, - .ioctl = snd_pcm_lib_ioctl, .hw_params = snd_at73c213_pcm_hw_params, .prepare = snd_at73c213_pcm_prepare, .trigger = snd_at73c213_pcm_trigger, |